From dcf396a8267defde403b9441fb6d55e1432c04e1 Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Tue, 19 Jan 2016 17:35:21 +0530 Subject: [PATCH 01/46] Adding support for following cmdlets 1) Get Storage classification (Get-AzureRmSiteRecoveryStorageClassification) 2) Pair storages (Start-AzureRmSiteRecoveryStorageClassificationMappingJob) 3) Unpair Storages (Start-AzureRmSiteRecoveryStorageClassificationUnmappingJob) --- .../Commands.SiteRecovery.csproj | 8 +- .../Common/PSSiteRecoveryFabricClient.cs | 28 ++ ...SiteRecoveryStorageClassificationClient.cs | 242 ++++++++++++ .../Models/PSConstants.cs | 353 ++++++++++++++++++ .../Commands.SiteRecovery/Models/PSObjects.cs | 31 ++ .../Properties/Resources.Designer.cs | 9 + .../Properties/Resources.resx | 3 + ...tAzureSiteRecoveryStorageClassification.cs | 77 ++++ ...RecoveryStorageClassificationMappingJob.cs | 54 +++ ...coveryStorageClassificationUnmappingJob.cs | 85 +++++ .../Utilities/Utilities.cs | 85 +++++ .../Commands.SiteRecovery/packages.config | 2 +- 12 files changed, 974 insertions(+), 3 deletions(-) create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index 04397d238170..54638b8f569f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -52,8 +52,8 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll - True + False + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.3-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -125,6 +125,7 @@ + @@ -166,6 +167,9 @@ + + + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs index 2a17a81b8949..1cfaa5de4b22 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs @@ -13,6 +13,9 @@ // ---------------------------------------------------------------------------------- using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; using Microsoft.Azure.Management.SiteRecovery; using Microsoft.Azure.Management.SiteRecovery.Models; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; @@ -24,6 +27,31 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// public partial class PSRecoveryServicesClient { + /// + /// Gets all fabrics associated with a vault. + /// + /// Callback to execute on the result. + /// Task object tracking async operation. + public Task EnumerateFabricsAsync(Action> callback) + { + CancellationToken cancellationToken = new CancellationToken(); + + Task backgroundTask = new Task(new Action(() => + { + Task storageTask = + this.GetSiteRecoveryClient().Fabrics.ListAsync( + this.GetRequestHeaders(), + cancellationToken); + + Task.WaitAll(storageTask); + + callback(storageTask.Result.Fabrics); + })); + + backgroundTask.Start(); + return backgroundTask; + } + /// /// Gets Azure Site Recovery Fabrics. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs new file mode 100644 index 000000000000..6101272bb86a --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs @@ -0,0 +1,242 @@ +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Azure.Management.SiteRecovery; +using Microsoft.Azure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + public partial class PSRecoveryServicesClient + { + /// + /// Gets all storage classifications associated with a vault. + /// + /// Callback to execute on the result. + /// Task object tracking async operation. + public Task EnumerateStorageClassificationsAsync(Action> callback) + { + CancellationToken cancellationToken = new CancellationToken(); + + Task backgroundTask = new Task(new Action(() => + { + Task storageTask = + this.GetSiteRecoveryClient().StorageClassification.ListAllAsync( + this.GetRequestHeaders(), + cancellationToken); + + Task.WaitAll(storageTask); + + callback(storageTask.Result.StorageClassifications); + + while (!string.IsNullOrEmpty(storageTask.Result.NextLink)) + { + storageTask = + this.GetSiteRecoveryClient().StorageClassification.ListNextAsync( + storageTask.Result.NextLink, + this.GetRequestHeaders(), + cancellationToken); + + Task.WaitAll(storageTask); + + callback(storageTask.Result.StorageClassifications); + } + })); + + backgroundTask.Start(); + return backgroundTask; + } + + /// + /// Gets all storage classifications associated with a vault. + /// + /// Callback to execute on the result. + /// Task object tracking async operation. + public Task EnumerateStorageClassificationMappingsAsync(Action> callback) + { + CancellationToken cancellationToken = new CancellationToken(); + + Task backgroundTask = new Task(new Action(() => + { + Task storageTask = + this.GetSiteRecoveryClient().StorageClassificationMapping.ListAllAsync( + this.GetRequestHeaders(), + cancellationToken); + + Task.WaitAll(storageTask); + + callback(storageTask.Result.StorageClassificationMappings); + + while (!string.IsNullOrEmpty(storageTask.Result.NextLink)) + { + storageTask = + this.GetSiteRecoveryClient().StorageClassificationMapping.ListNextAsync( + storageTask.Result.NextLink, + this.GetRequestHeaders(), + cancellationToken); + + Task.WaitAll(storageTask); + + callback(storageTask.Result.StorageClassificationMappings); + } + })); + + backgroundTask.Start(); + return backgroundTask; + } + + /// + /// Starts job for unmapping storage classifications. + /// + /// Classification mapping. + /// Job object. + public ASRJob UnmapStorageClassifications(StorageClassificationMapping mapping) + { + string[] tokens = mapping.Id.UnFormatArmId( + ARMResourceIdPaths.StorageClassificationMappingResourceIdPath); + LongRunningOperationResponse operationResponse = + this.GetSiteRecoveryClient().StorageClassificationMapping + .BeginUnpairStorageClassification( + tokens[0], + tokens[1], + tokens[2], + this.GetRequestHeaders()); + + JobResponse jobResponse = + this.GetAzureSiteRecoveryJobDetails( + PSRecoveryServicesClient.GetJobIdFromReponseLocation(operationResponse.Location)); + + return new ASRJob(jobResponse.Job); + } + + /// + /// Starts job for mapping storage classification. + /// + /// Primary classification. + /// Recovery classification. + /// Optional. ARM name of the mapping. + /// Job object. + public ASRJob MapStorageClassification( + ASRStorageClassification primaryClassification, + ASRStorageClassification recoveryClassification, + string armName = null) + { + string[] tokens = primaryClassification.StorageClassificationId.UnFormatArmId( + ARMResourceIdPaths.StorageClassificationResourceIdPath); + + if (string.IsNullOrEmpty(armName)) + { + armName = string.Format( + "StrgMap_{0}_{1}", + primaryClassification.StorageClassificationFriendlyName, + recoveryClassification.StorageClassificationFriendlyName); + } + + var props = new StorageClassificationMappingInputProperties() + { + TargetStorageClassificationId = recoveryClassification.StorageClassificationId + }; + + var input = new StorageClassificationMappingInput() + { + Properties = props + }; + + LongRunningOperationResponse operationResponse = + this.GetSiteRecoveryClient().StorageClassificationMapping + .BeginPairStorageClassification( + tokens[0], + tokens[1], + armName, + input, + this.GetRequestHeaders()); + + JobResponse jobResponse = + this.GetAzureSiteRecoveryJobDetails( + PSRecoveryServicesClient.GetJobIdFromReponseLocation(operationResponse.Location)); + + return new ASRJob(jobResponse.Job); + } + } + + /// + /// Extension methods for Storage classification. + /// + public static class StorageClassificationExtensions + { + /// + /// Gets primary storage classification ARM Id. + /// + /// Storage classification mapping input. + /// ARM Id of the primary storage classification. + public static string GetPrimaryStorageClassificationId( + this StorageClassificationMapping mapping) + { + string[] tokens = mapping.Id.UnFormatArmId( + ARMResourceIdPaths.StorageClassificationMappingResourceIdPath); + + string vaultId = mapping.Id.GetVaultArmId(); + + return vaultId + "/" + string.Format( + ARMResourceIdPaths.StorageClassificationResourceIdPath, + tokens[0], + tokens[1]); + } + + /// + /// Gets fabric Id from classification ARM Id. + /// + /// Storage classification. + /// ARM Id of the fabric. + public static string GetFabricId( + this StorageClassification classification) + { + string[] tokens = classification.Id.UnFormatArmId( + ARMResourceIdPaths.StorageClassificationResourceIdPath); + + string vaultId = classification.Id.GetVaultArmId(); + + return vaultId + "/" + string.Format( + ARMResourceIdPaths.FabricResourceIdPath, + tokens[0]); + } + + /// + /// Gets powershell object from Storage classification object. + /// + /// Classification to process. + /// Dictionary of all possible classifications. + /// Dictionary of list of fabrics. + /// Dictionary of mapping objects. + /// Powershell representation of storage classification. + public static ASRStorageClassification GetPSObject( + this StorageClassification classification, + Dictionary classificationMap, + Dictionary fabricMap, + Dictionary> mappingsDict) + { + var fabric = fabricMap[classification.GetFabricId()]; + List targetClassifications; + + return new ASRStorageClassification() + { + FabricFriendlyName = fabric.Properties.FriendlyName, + FabricId = fabric.Id, + StorageClassificationFriendlyName = + classification.Properties.FriendlyName, + StorageClassificationId = classification.Id, + TargetClassifications = + mappingsDict.TryGetValue( + classification.Id, + out targetClassifications) ? + targetClassifications.ConvertAll(item => + classificationMap[item.Properties.TargetStorageClassificationId] + .GetPSObject( + classificationMap, + fabricMap, + mappingsDict)) : + new List() + }; + } + } +} diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs index 5786d915e7bf..579c82062cbb 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs @@ -357,5 +357,358 @@ public static class ARMResourceTypeConstants /// Virtual Networks /// public const string VirtualNetworks = "virtualNetworks"; + + /// + /// Recovery provider resource name. + /// + public const string RecoveryServicesProviders = "replicationRecoveryServicesProviders"; + + /// + /// Protection container mappings resource name. + /// + public const string ProtectionContainerMappings = "replicationProtectionContainerMappings"; + + /// + /// Protectable Items resource name. + /// + public const string ProtectableItems = "replicationProtectableItems"; + + /// + /// Recovery Points resource name. + /// + public const string RecoveryPoints = "recoveryPoints"; + + /// + /// Jobs resource name. + /// + public const string Jobs = "replicationJobs"; + + /// + /// Policies resource name. + /// + public const string Policies = "replicationPolicies"; + + /// + /// RecoveryPlans resource name. + /// + public const string RecoveryPlans = "replicationRecoveryPlans"; + + /// + /// Logical Networks resource name. + /// + public const string LogicalNetworks = "replicationLogicalNetworks"; + + /// + /// Network Mappings resource name. + /// + public const string NetworkMappings = "replicationNetworkMappings"; + + /// + /// VCenters resource name. + /// + public const string VCenters = "replicationvCenters"; + + /// + /// Replication Vault Usages. + /// + public const string ReplicationVaultUsages = "replicationUsages"; + + /// + /// Vault Usages. + /// + public const string VaultUsages = "usages"; + + /// + /// Events resource name. + /// + public const string Events = "replicationEvents"; + + /// + /// Storage classification resource name. + /// + public const string StorageClassification = "replicationStorageClassifications"; + + /// + /// Storage classification mapping resource name. + /// + public const string StorageClassificationMapping = "replicationStorageClassificationMappings"; + + /// + /// Alerts resource name. + /// + public const string Alerts = "replicationAlertSettings"; + + /// + /// List Recovery Azure Vm size operation name. + /// + public const string TargetComputeSizes = "targetComputeSizes"; + } + + /// + /// Constants for current version. + /// + public class ARMResourceIdPaths + { + /// + /// ARM resource path for fabric. + /// + public const string FabricResourceIdPath = ARMRoutePathConstants.FabricsRoutePath + "/{0}"; + + /// + /// ARM resource path for recovery services providers. + /// + public const string RecoveryServicesProviderResourceIdPath = FabricResourceIdPath + "/" + ARMResourceTypeConstants.RecoveryServicesProviders + "/{1}"; + + /// + /// ARM resource path for recovery services providers. + /// + public const string ProtectionContainerResourceIdPath = FabricResourceIdPath + "/" + ARMResourceTypeConstants.ReplicationProtectionContainers + "/{1}"; + + /// + /// ARM resource path for protection container mappings. + /// + public const string ProtectionContainerMappingResourceIdPath = ProtectionContainerResourceIdPath + "/" + ARMResourceTypeConstants.ProtectionContainerMappings + "/{2}"; + + /// + /// ARM resource path for ProtectableItems. + /// + public const string ProtectableItemResourceIdPath = ProtectionContainerResourceIdPath + "/" + ARMResourceTypeConstants.ProtectableItems + "/{2}"; + + /// + /// ARM resource path for ReplicatedProtectedItems. + /// + public const string ReplicatedProtectedItemResourceIdPath = ProtectionContainerResourceIdPath + "/" + ARMResourceTypeConstants.ReplicationProtectedItems + "/{2}"; + + /// + /// ARM resource path for RecoveryPoints. + /// + public const string RecoveryPointResourceIdPath = ReplicatedProtectedItemResourceIdPath + "/" + ARMResourceTypeConstants.RecoveryPoints + "/{3}"; + + /// + /// ARM resource path for Jobs. + /// + public const string JobResourceIdPath = ARMRoutePathConstants.JobsRoutePath + "/{0}"; + + /// + /// ARM resource path for Policies. + /// + public const string PolicyResourceIdPath = ARMRoutePathConstants.PoliciesRoutePath + "/{0}"; + + /// + /// ARM resource path for RecoveryPlans. + /// + public const string RecoveryPlanResourceIdPath = ARMRoutePathConstants.RecoveryPlansRoutePath + "/{0}"; + + /// + /// ARM resource path for Networks. + /// + public const string NetworkResourceIdPath = FabricResourceIdPath + "/" + ARMResourceTypeConstants.ReplicationNetworks + "/{1}"; + + /// + /// ARM resource path for LogicalNetworks. + /// + public const string LogicalNetworkResourceIdPath = FabricResourceIdPath + "/" + ARMResourceTypeConstants.LogicalNetworks + "/{1}"; + + /// + /// ARM resource path for Network Mappings. + /// + public const string NetworkMappingResourceIdPath = + NetworkResourceIdPath + "/" + ARMResourceTypeConstants.NetworkMappings + "/{2}"; + + /// + /// ARM Resource path for Vcenters. + /// + public const string VCenterResourceIdPath = FabricResourceIdPath + "/" + ARMResourceTypeConstants.VCenters + "/{1}"; + + /// + /// ARM resource path for event. + /// + public const string EventResourceIdPath = ARMRoutePathConstants.EventsRoutePath + "/{0}"; + + /// + /// ARM resource path for storage classification. + /// + public const string StorageClassificationResourceIdPath = + FabricResourceIdPath + "/" + ARMResourceTypeConstants.StorageClassification + "/{1}"; + + /// + /// ARM resource path for storage classification mapping. + /// + public const string StorageClassificationMappingResourceIdPath = + StorageClassificationResourceIdPath + "/" + ARMResourceTypeConstants.StorageClassificationMapping + "/{2}"; + + /// + /// ARM resource path for event. + /// + public const string AlertsResourceIdPath = ARMRoutePathConstants.AlertsRoutePath + "/{0}"; + + /// + /// SRS ARM Url Pattern. + /// + public const string SRSArmUrlPattern = "/Subscriptions/{0}/resourceGroups/{1}/providers/{2}/{3}/{4}"; + + #region External ARM Resource Id + /// + /// Storage account ARM Id. + /// + public const string StorageAccountArmId = "/subscriptions/{0}/resourceGroups/{1}/providers/{2}/storageAccounts/{3}"; + + /// + /// ARM resource path for Azure Networks. + /// + public const string AzureNetworksPath = + "/subscriptions/{0}/resourceGroups/{1}/providers/{2}/virtualNetworks/{3}"; + + /// + /// Automation runbook ARM Id. + /// + public const string AutomationRunbookArmId = + "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Automation/automationAccounts/{2}/runbooks/{3}"; + + #endregion + } + + /// + /// Constants for Route paths. + /// + [SuppressMessage("Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1402:FileMayOnlyContainASingleClass", Justification = "Keeping all related classes together.")] + public class ARMRoutePathConstants + { + /// + /// Vault level ReplicatedProtectedItems route path. + /// + public const string VaultLevelReplicationProtectedItemsRoutePath = ARMResourceTypeConstants.ReplicationProtectedItems; + + /// + /// Vault level ProtectionContainerMappings route path. + /// + public const string VaultLevelProtectionContainerMappingsRoutePath = ARMResourceTypeConstants.ProtectionContainerMappings; + + /// + /// Vault level ProtectionContainers route path. + /// + public const string VaultLevelProtectionContainersRoutePath = ARMResourceTypeConstants.ReplicationProtectionContainers; + + /// + /// Vault level storage classification route path. + /// + public const string VaultLevelStorageClassificationRoutePath = + ARMResourceTypeConstants.StorageClassification; + + /// + /// Vault level storage classification mapping route path. + /// + public const string VaultLevelStorageClassificationMappingRoutePath = + ARMResourceTypeConstants.StorageClassificationMapping; + + /// + /// Fabric route path. + /// + public const string FabricsRoutePath = ARMResourceTypeConstants.ReplicationFabrics; + + /// + /// RecoveryServicesProvider route path. + /// + public const string RecoveryServicesProvidersRoutePath = FabricsRoutePath + "/{fabricName}/" + ARMResourceTypeConstants.RecoveryServicesProviders; + + /// + /// RecoveryServicesProvider view API route path. + /// + public const string RecoveryServicesProvidersViewRoutePath = ARMResourceTypeConstants.RecoveryServicesProviders; + + /// + /// ProtectionContainer route path. + /// + public const string ProtectionContainersRoutePath = FabricsRoutePath + "/{fabricName}/" + ARMResourceTypeConstants.ReplicationProtectionContainers; + + /// + /// Protection container mappings path. + /// + public const string ProtectionContainerMappingsRoutePath = ProtectionContainersRoutePath + "/{protectionContainerName}/" + ARMResourceTypeConstants.ProtectionContainerMappings; + + /// + /// ProtectableItems route path. + /// + public const string ProtectableItemsRoutePath = ProtectionContainersRoutePath + "/{protectionContainerName}/" + ARMResourceTypeConstants.ProtectableItems; + + /// + /// ReplicatedProtectedItems route path. + /// + public const string ReplicationProtectedItemsRoutePath = ProtectionContainersRoutePath + "/{protectionContainerName}/" + ARMResourceTypeConstants.ReplicationProtectedItems; + + /// + /// RecoveryPoints route path. + /// + public const string RecoveryPointsRoutePath = ReplicationProtectedItemsRoutePath + "/{replicatedProtectedItemName}/" + ARMResourceTypeConstants.RecoveryPoints; + + /// + /// Jobs route path. + /// + public const string JobsRoutePath = ARMResourceTypeConstants.Jobs; + + /// + /// Jobs route path. + /// + public const string PoliciesRoutePath = ARMResourceTypeConstants.Policies; + + /// + /// Jobs route path. + /// + public const string RecoveryPlansRoutePath = ARMResourceTypeConstants.RecoveryPlans; + + /// + /// Replication Networks Route Path + /// + public const string NetworksRoutePath = FabricsRoutePath + "/{fabricName}/" + ARMResourceTypeConstants.ReplicationNetworks; + + /// + /// Replication Logical Networks Route Path + /// + public const string LogicalNetworksRoutePath = FabricsRoutePath + "/{fabricName}/" + ARMResourceTypeConstants.LogicalNetworks; + + /// + /// Network Mappings Route Path + /// + public const string NetworkMappingsRoutePath = + NetworksRoutePath + "/{networkName}/" + ARMResourceTypeConstants.NetworkMappings; + + /// + /// VCenters route path. + /// + public const string VCentersRoutePath = FabricsRoutePath + "/{fabricName}/" + ARMResourceTypeConstants.VCenters; + + /// + /// Events route path. + /// + public const string EventsRoutePath = ARMResourceTypeConstants.Events; + + /// + /// Storage route path. + /// + public const string StorageClassificationRoutePath = + FabricsRoutePath + "/{fabricName}/" + ARMResourceTypeConstants.StorageClassification; + + /// + /// Storage mapping route path. + /// + public const string StorageClassificationMappingRoutePath = + StorageClassificationRoutePath + "/{storageClassificationName}/" + ARMResourceTypeConstants.StorageClassificationMapping; + + /// + /// Alerts route path. + /// + public const string AlertsRoutePath = ARMResourceTypeConstants.Alerts; + + /// + /// Operations route path. + /// + public const string OperationsRoutePath = "operations"; + + /// + /// Operations route path. + /// + public const string TargetComputesSizesPath = + ReplicationProtectedItemsRoutePath + "/{replicatedProtectedItemName}/" + + ARMResourceTypeConstants.TargetComputeSizes; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index c39a2740d0cd..73752c28f874 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -1330,6 +1330,37 @@ public ASRProviderError(ProviderError error) public DateTime CreationTimeUtc { get; set; } } + /// + /// Represents Azure site recovery storage classification. + /// + public class ASRStorageClassification + { + /// + /// Gets or sets Storage classification ARM name. + /// + public string StorageClassificationId { get; set; } + + /// + /// Gets or sets Storage classification friendly name. + /// + public string StorageClassificationFriendlyName { get; set; } + + /// + /// Gets or sets Storage classification fabric ARM name. + /// + public string FabricId { get; set; } + + /// + /// Gets or sets Fabric friendly name. + /// + public string FabricFriendlyName { get; set; } + + /// + /// Gets or sets Target classifications. + /// + public List TargetClassifications { get; set; } + } + /// /// Disk details. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs index 60b043deec3a..2525c387332e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs @@ -260,6 +260,15 @@ internal static string NicNotFoundInVMForUpdateVmProperties { } } + /// + /// Looks up a localized string similar to No storage classification mapping found between {0} and {1}. + /// + internal static string NoClassificationMappingFound { + get { + return ResourceManager.GetString("NoClassificationMappingFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to RecoveryServices client is null, please check Resource, Cloud Service information in Vault Settings. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx index 0c1045f42868..f7bca236c749 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx @@ -310,4 +310,7 @@ Please provide a storage account with the same location as that of the vault. SiteRecovery vault type will be deprecated soon. Please use RecoveryServices vault type instead. + + No storage classification mapping found between {0} and {1} + \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs new file mode 100644 index 000000000000..f5344bcba14c --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs @@ -0,0 +1,77 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Azure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Retrieves Azure Site Recovery storage classification. + /// + [Cmdlet(VerbsCommon.Get, "AzureRmSiteRecoveryStorageClassification", DefaultParameterSetName = ASRParameterSets.Default)] + [OutputType(typeof(IEnumerable))] + public class GetAzureSiteRecoveryStorageClassification : SiteRecoveryCmdletBase + { + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + List fabrics = new List(); + List storageClassifications = new List(); + List storageClassificationMappings + = new List(); + + Task fabricTask = RecoveryServicesClient.EnumerateFabricsAsync((entities) => + { + fabrics.AddRange(entities); + }); + + Task storageClassificationTask = + RecoveryServicesClient.EnumerateStorageClassificationsAsync((entities) => + { + storageClassifications.AddRange(entities); + }); + + Task mappingsTask = + RecoveryServicesClient.EnumerateStorageClassificationMappingsAsync((entities) => + { + storageClassificationMappings.AddRange(entities); + }); + + Task.WaitAll(fabricTask, storageClassificationTask, mappingsTask); + + var fabricMap = fabrics.ToDictionary(item => item.Id, item => item); + var classificationMap = storageClassifications + .ToDictionary(item => item.Id, item => item); + var mappingsDict = storageClassificationMappings + .GroupBy(item => item.GetPrimaryStorageClassificationId()) + .ToDictionary(item => item.Key, item => item.ToList()); + + List psStorageClassifications + = new List(); + + var psObject = storageClassifications.ConvertAll(item => + item.GetPSObject(classificationMap, fabricMap, mappingsDict)); + + base.WriteObject(psObject); + } + } +} diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs new file mode 100644 index 000000000000..17d894c6a8c2 --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs @@ -0,0 +1,54 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Pairs storage classification + /// + [Cmdlet(VerbsLifecycle.Start, "AzureRmSiteRecoveryStorageClassificationMappingJob", DefaultParameterSetName = ASRParameterSets.Default)] + [OutputType(typeof(IEnumerable))] + public class StartAzureSiteRecoveryStorageClassificationMappingJob : SiteRecoveryCmdletBase + { + #region Parameters + + /// + /// Gets or sets primary storage classification. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByObject, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ASRStorageClassification PrimaryStorageClassification { get; set; } + + /// + /// Gets or sets recovery storage classification. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByObject, Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRStorageClassification RecoveryStorageClassification { get; set; } + #endregion + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + base.WriteObject(RecoveryServicesClient.MapStorageClassification( + PrimaryStorageClassification, + RecoveryStorageClassification)); + } + } +} diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs new file mode 100644 index 000000000000..23cf6aa00079 --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs @@ -0,0 +1,85 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Threading.Tasks; +using Microsoft.Azure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + // + /// Pairs storage classification + /// + [Cmdlet(VerbsLifecycle.Start, "AzureRmSiteRecoveryStorageClassificationUnmappingJob", DefaultParameterSetName = ASRParameterSets.Default)] + [OutputType(typeof(IEnumerable))] + public class StartAzureSiteRecoveryStorageClassificationUnmappingJob : SiteRecoveryCmdletBase + { + #region Parameters + + /// + /// Gets or sets primary storage classification. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByObject, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ASRStorageClassification PrimaryStorageClassification { get; set; } + + /// + /// Gets or sets recovery storage classification. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByObject, Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRStorageClassification RecoveryStorageClassification { get; set; } + #endregion + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + List storageClassificationMappings + = new List(); + + Task mappingsTask = + RecoveryServicesClient.EnumerateStorageClassificationMappingsAsync((entities) => + { + storageClassificationMappings.AddRange(entities); + }); + + Task.WaitAll(mappingsTask); + + StorageClassificationMapping selectedMap = storageClassificationMappings + .Where(item => + item.Properties.TargetStorageClassificationId.Equals( + RecoveryStorageClassification.StorageClassificationId)) + .Where(item => item.GetPrimaryStorageClassificationId().Equals( + PrimaryStorageClassification.StorageClassificationId)) + .FirstOrDefault(); + + if (selectedMap == null) + { + throw new ArgumentException( + string.Format(Properties.Resources.NoClassificationMappingFound, + PrimaryStorageClassification.StorageClassificationFriendlyName, + RecoveryStorageClassification.StorageClassificationFriendlyName)); + } + else + { + base.WriteObject(RecoveryServicesClient.UnmapStorageClassifications(selectedMap)); + } + } + } +} diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs index a147cf8f6ffc..419a1f965c0d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs @@ -187,5 +187,90 @@ public static void GetResourceProviderNamespaceAndType( resourceProviderNamespace = dictionary[ARMResourceTypeConstants.Providers]; resourceType = dictionary.ContainsKey("SiteRecoveryVault") ? "SiteRecoveryVault" : "RecoveryServicesVault"; } + + /// + /// Returns tokens based on format provided. This works on ARM IDs only. + /// + /// String to unformat. + /// Format reference. + /// Array of string tokens. + public static string[] UnFormatArmId(this string data, string format) + { + // Creates a new copy of the strings. + string dataCopy = string.Copy(data); + string processFormat = string.Copy(format); + + try + { + List tokens = new List(); + string processData = string.Empty; + + // First truncate data string to point from where format string starts. + // We start from 1 index so that if url starts with / we avoid picking the first /. + int firstTokenEnd = format.IndexOf("/", 1); + int matchIndex = dataCopy.ToLower().IndexOf(format.Substring(0, firstTokenEnd).ToLower()); + + if (matchIndex == -1 || string.IsNullOrEmpty(dataCopy)) + { + throw new Exception("Invalid ARM Id - " + data); + } + + processData = dataCopy.Substring(matchIndex); + + int counter = 0; + while (true) + { + int markerStartIndex = processFormat.IndexOf("{" + counter + "}"); + + if (markerStartIndex == -1) + { + break; + } + + int markerEndIndex = processData.IndexOf("/", markerStartIndex); + + if (markerEndIndex == -1) + { + tokens.Add(processData.Substring(markerStartIndex)); + } + else + { + tokens.Add(processData.Substring(markerStartIndex, markerEndIndex - markerStartIndex)); + processData = processData.Substring(markerEndIndex); + processFormat = processFormat.Substring(markerStartIndex + 3); + } + + counter++; + } + + // Similar formats like /a/{0}/b/{1} and /c/{0}/d/{1} can return incorrect tokens + // therefore, adding another check to ensure that the data is unformatted correctly. + if (data.ToLower().Contains(string.Format(format, tokens.ToArray()).ToLower())) + { + return tokens.ToArray(); + } + else + { + throw new Exception("Invalid ARM Id - " + data); + } + } + catch (Exception ex) + { + throw new Exception( + string.Format("Invalid ARM Id - {0}. Exception - {1} ", data, ex)); + } + } + + /// + /// Returns ARM Id of the vault from ARM ID of the contained resource. + /// + /// ARM Id of the resource. + /// ARM Id of the vault. + public static string GetVaultArmId(this string data) + { + return string.Format( + ARMResourceIdPaths.SRSArmUrlPattern, + data.UnFormatArmId(ARMResourceIdPaths.SRSArmUrlPattern)); + } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config index 7ed9b4f2dd06..940870dbb305 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config @@ -4,7 +4,7 @@ - + From da84e89d85a8ab6fab583e9a30db8d82036b95a0 Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Tue, 19 Jan 2016 20:24:44 +0530 Subject: [PATCH 02/46] 1) Resolving CR comments 2) Adding cmdlet to fetch storage mappings --- .../Commands.SiteRecovery.csproj | 3 +- ...SiteRecoveryStorageClassificationClient.cs | 91 +++---------------- .../Commands.SiteRecovery/Models/PSObjects.cs | 37 ++++++-- .../Properties/Resources.Designer.cs | 2 +- .../Properties/Resources.resx | 2 +- ...tAzureSiteRecoveryStorageClassification.cs | 66 ++++++++++---- ...iteRecoveryStorageClassificationMapping.cs | 66 ++++++++++++++ ...RecoveryStorageClassificationMappingJob.cs | 28 +++++- ...coveryStorageClassificationUnmappingJob.cs | 25 ++--- .../Commands.SiteRecovery/packages.config | 2 +- 10 files changed, 194 insertions(+), 128 deletions(-) create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index 54638b8f569f..8a2808c646a9 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -53,7 +53,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.3-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll + True ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -168,6 +168,7 @@ + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs index 6101272bb86a..c6d35782b0e5 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs @@ -89,73 +89,42 @@ public Task EnumerateStorageClassificationMappingsAsync(Action /// Classification mapping. - /// Job object. - public ASRJob UnmapStorageClassifications(StorageClassificationMapping mapping) + /// Operation response. + public LongRunningOperationResponse UnmapStorageClassifications( + StorageClassificationMapping mapping) { string[] tokens = mapping.Id.UnFormatArmId( ARMResourceIdPaths.StorageClassificationMappingResourceIdPath); - LongRunningOperationResponse operationResponse = - this.GetSiteRecoveryClient().StorageClassificationMapping + return this.GetSiteRecoveryClient().StorageClassificationMapping .BeginUnpairStorageClassification( tokens[0], tokens[1], tokens[2], this.GetRequestHeaders()); - - JobResponse jobResponse = - this.GetAzureSiteRecoveryJobDetails( - PSRecoveryServicesClient.GetJobIdFromReponseLocation(operationResponse.Location)); - - return new ASRJob(jobResponse.Job); } /// /// Starts job for mapping storage classification. /// /// Primary classification. - /// Recovery classification. + /// Mapping input. /// Optional. ARM name of the mapping. - /// Job object. - public ASRJob MapStorageClassification( + /// Operation response. + public LongRunningOperationResponse MapStorageClassification( ASRStorageClassification primaryClassification, - ASRStorageClassification recoveryClassification, - string armName = null) + StorageClassificationMappingInput input, + string armName) { - string[] tokens = primaryClassification.StorageClassificationId.UnFormatArmId( + string[] tokens = primaryClassification.Id.UnFormatArmId( ARMResourceIdPaths.StorageClassificationResourceIdPath); - if (string.IsNullOrEmpty(armName)) - { - armName = string.Format( - "StrgMap_{0}_{1}", - primaryClassification.StorageClassificationFriendlyName, - recoveryClassification.StorageClassificationFriendlyName); - } - - var props = new StorageClassificationMappingInputProperties() - { - TargetStorageClassificationId = recoveryClassification.StorageClassificationId - }; - - var input = new StorageClassificationMappingInput() - { - Properties = props - }; - - LongRunningOperationResponse operationResponse = - this.GetSiteRecoveryClient().StorageClassificationMapping + return this.GetSiteRecoveryClient().StorageClassificationMapping .BeginPairStorageClassification( tokens[0], tokens[1], armName, input, this.GetRequestHeaders()); - - JobResponse jobResponse = - this.GetAzureSiteRecoveryJobDetails( - PSRecoveryServicesClient.GetJobIdFromReponseLocation(operationResponse.Location)); - - return new ASRJob(jobResponse.Job); } } @@ -200,43 +169,5 @@ public static string GetFabricId( ARMResourceIdPaths.FabricResourceIdPath, tokens[0]); } - - /// - /// Gets powershell object from Storage classification object. - /// - /// Classification to process. - /// Dictionary of all possible classifications. - /// Dictionary of list of fabrics. - /// Dictionary of mapping objects. - /// Powershell representation of storage classification. - public static ASRStorageClassification GetPSObject( - this StorageClassification classification, - Dictionary classificationMap, - Dictionary fabricMap, - Dictionary> mappingsDict) - { - var fabric = fabricMap[classification.GetFabricId()]; - List targetClassifications; - - return new ASRStorageClassification() - { - FabricFriendlyName = fabric.Properties.FriendlyName, - FabricId = fabric.Id, - StorageClassificationFriendlyName = - classification.Properties.FriendlyName, - StorageClassificationId = classification.Id, - TargetClassifications = - mappingsDict.TryGetValue( - classification.Id, - out targetClassifications) ? - targetClassifications.ConvertAll(item => - classificationMap[item.Properties.TargetStorageClassificationId] - .GetPSObject( - classificationMap, - fabricMap, - mappingsDict)) : - new List() - }; - } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index 73752c28f874..495b771a06a6 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -1336,29 +1336,50 @@ public ASRProviderError(ProviderError error) public class ASRStorageClassification { /// - /// Gets or sets Storage classification ARM name. + /// Gets or sets Storage classification ARM Id. /// - public string StorageClassificationId { get; set; } + public string Id { get; set; } /// - /// Gets or sets Storage classification friendly name. + /// Gets or sets Storage classification ARM name. /// - public string StorageClassificationFriendlyName { get; set; } + public string Name { get; set; } /// - /// Gets or sets Storage classification fabric ARM name. + /// Gets or sets Storage classification friendly name. /// - public string FabricId { get; set; } + public string FriendlyName { get; set; } /// /// Gets or sets Fabric friendly name. /// public string FabricFriendlyName { get; set; } + } + + /// + /// Represents Azure site recovery storage classification mapping. + /// + public class ASRStorageClassificationMapping + { + /// + /// Gets or sets Storage classification ARM Id. + /// + public string Id { get; set; } + + /// + /// Gets or sets Storage classification ARM name. + /// + public string Name { get; set; } + + /// + /// Gets or sets primary classification ARM Id. + /// + public string PrimaryClassificationId { get; set; } /// - /// Gets or sets Target classifications. + /// Gets or sets recovery classification ARM Id. /// - public List TargetClassifications { get; set; } + public string RecoveryClassificationId { get; set; } } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs index 2525c387332e..dae70cd2446e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs @@ -261,7 +261,7 @@ internal static string NicNotFoundInVMForUpdateVmProperties { } /// - /// Looks up a localized string similar to No storage classification mapping found between {0} and {1}. + /// Looks up a localized string similar to No storage classification mapping found with Id {0}. /// internal static string NoClassificationMappingFound { get { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx index f7bca236c749..93b802efe5eb 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx @@ -311,6 +311,6 @@ Please provide a storage account with the same location as that of the vault.SiteRecovery vault type will be deprecated soon. Please use RecoveryServices vault type instead. - No storage classification mapping found between {0} and {1} + No storage classification mapping found with Id {0} \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs index f5344bcba14c..429a7fa6edf3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs @@ -29,6 +29,22 @@ namespace Microsoft.Azure.Commands.SiteRecovery [OutputType(typeof(IEnumerable))] public class GetAzureSiteRecoveryStorageClassification : SiteRecoveryCmdletBase { + #region Parameters + /// + /// Gets or sets name of classification. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + /// + /// Gets or sets friendly name of classification. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByFriendlyName, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public string FriendlyName { get; set; } + #endregion + /// /// ProcessRecord of the command. /// @@ -36,8 +52,6 @@ public override void ExecuteCmdlet() { List fabrics = new List(); List storageClassifications = new List(); - List storageClassificationMappings - = new List(); Task fabricTask = RecoveryServicesClient.EnumerateFabricsAsync((entities) => { @@ -50,28 +64,42 @@ List storageClassificationMappings storageClassifications.AddRange(entities); }); - Task mappingsTask = - RecoveryServicesClient.EnumerateStorageClassificationMappingsAsync((entities) => - { - storageClassificationMappings.AddRange(entities); - }); - - Task.WaitAll(fabricTask, storageClassificationTask, mappingsTask); + Task.WaitAll(fabricTask, storageClassificationTask); var fabricMap = fabrics.ToDictionary(item => item.Id, item => item); - var classificationMap = storageClassifications - .ToDictionary(item => item.Id, item => item); - var mappingsDict = storageClassificationMappings - .GroupBy(item => item.GetPrimaryStorageClassificationId()) - .ToDictionary(item => item.Key, item => item.ToList()); - List psStorageClassifications - = new List(); + switch (this.ParameterSetName) + { + case ASRParameterSets.ByFriendlyName: + storageClassifications = storageClassifications.Where(item => + item.Properties.FriendlyName.Equals( + this.FriendlyName, + StringComparison.InvariantCultureIgnoreCase)) + .ToList(); + break; + case ASRParameterSets.ByName: + storageClassifications = storageClassifications.Where(item => + item.Name.Equals( + this.Name, + StringComparison.InvariantCultureIgnoreCase)) + .ToList(); + break; + } - var psObject = storageClassifications.ConvertAll(item => - item.GetPSObject(classificationMap, fabricMap, mappingsDict)); + var psObject = storageClassifications.ConvertAll(item => + { + var fabric = fabricMap[item.GetFabricId()]; + + return new ASRStorageClassification() + { + FabricFriendlyName = fabric.Properties.FriendlyName, + FriendlyName = item.Properties.FriendlyName, + Id = item.Id, + Name = item.Name + }; + }); - base.WriteObject(psObject); + this.WriteObject(psObject, true); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs new file mode 100644 index 000000000000..097eb980a3a1 --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Text; +using System.Threading.Tasks; +using Microsoft.Azure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Retrieves Azure Site Recovery storage classification. + /// + [Cmdlet(VerbsCommon.Get, "AzureRmSiteRecoveryStorageClassificationMapping", DefaultParameterSetName = ASRParameterSets.Default)] + [OutputType(typeof(IEnumerable))] + public class GetAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdletBase + { + #region Parameters + /// + /// Gets or sets name of classification. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + #endregion + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + List mappings = new List(); + Task mappingTask = + RecoveryServicesClient.EnumerateStorageClassificationMappingsAsync((entities) => + { + mappings.AddRange(entities); + }); + + Task.WaitAll(mappingTask); + + switch (this.ParameterSetName) + { + case ASRParameterSets.ByName: + mappings = mappings.Where(item => + item.Name.Equals( + this.Name, + StringComparison.InvariantCultureIgnoreCase)) + .ToList(); + break; + } + + var psObject = mappings.ConvertAll(item => + { + return new ASRStorageClassificationMapping() + { + Id = item.Id, + Name = item.Name, + PrimaryClassificationId = item.GetPrimaryStorageClassificationId(), + RecoveryClassificationId = item.Properties.TargetStorageClassificationId + }; + }); + + base.WriteObject(psObject); + } + } +} diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs index 17d894c6a8c2..d89d72c9297e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs @@ -14,6 +14,7 @@ using System.Collections.Generic; using System.Management.Automation; +using Microsoft.Azure.Management.SiteRecovery.Models; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -46,9 +47,32 @@ public class StartAzureSiteRecoveryStorageClassificationMappingJob : SiteRecover /// public override void ExecuteCmdlet() { - base.WriteObject(RecoveryServicesClient.MapStorageClassification( + string armName = string.Format( + "StrgMap_{0}_{1}", + PrimaryStorageClassification.Name, + RecoveryStorageClassification.Name); + + var props = new StorageClassificationMappingInputProperties() + { + TargetStorageClassificationId = RecoveryStorageClassification.Id + }; + + var input = new StorageClassificationMappingInput() + { + Properties = props + }; + + LongRunningOperationResponse operationResponse = + RecoveryServicesClient.MapStorageClassification( PrimaryStorageClassification, - RecoveryStorageClassification)); + input, + armName); + + JobResponse jobResponse = + RecoveryServicesClient.GetAzureSiteRecoveryJobDetails( + PSRecoveryServicesClient.GetJobIdFromReponseLocation(operationResponse.Location)); + + base.WriteObject(new ASRJob(jobResponse.Job)); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs index 23cf6aa00079..8a4ef1e7c834 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs @@ -35,14 +35,7 @@ public class StartAzureSiteRecoveryStorageClassificationUnmappingJob : SiteRecov /// [Parameter(ParameterSetName = ASRParameterSets.ByObject, Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] - public ASRStorageClassification PrimaryStorageClassification { get; set; } - - /// - /// Gets or sets recovery storage classification. - /// - [Parameter(ParameterSetName = ASRParameterSets.ByObject, Mandatory = true)] - [ValidateNotNullOrEmpty] - public ASRStorageClassification RecoveryStorageClassification { get; set; } + public ASRStorageClassificationMapping StorageClassificationMapping { get; set; } #endregion /// @@ -63,22 +56,24 @@ List storageClassificationMappings StorageClassificationMapping selectedMap = storageClassificationMappings .Where(item => - item.Properties.TargetStorageClassificationId.Equals( - RecoveryStorageClassification.StorageClassificationId)) - .Where(item => item.GetPrimaryStorageClassificationId().Equals( - PrimaryStorageClassification.StorageClassificationId)) + item.Id.Equals(StorageClassificationMapping.Id)) .FirstOrDefault(); if (selectedMap == null) { throw new ArgumentException( string.Format(Properties.Resources.NoClassificationMappingFound, - PrimaryStorageClassification.StorageClassificationFriendlyName, - RecoveryStorageClassification.StorageClassificationFriendlyName)); + StorageClassificationMapping.Id)); } else { - base.WriteObject(RecoveryServicesClient.UnmapStorageClassifications(selectedMap)); + var operationResponse = + RecoveryServicesClient.UnmapStorageClassifications(selectedMap); + JobResponse jobResponse = + RecoveryServicesClient.GetAzureSiteRecoveryJobDetails( + PSRecoveryServicesClient.GetJobIdFromReponseLocation(operationResponse.Location)); + + base.WriteObject(new ASRJob(jobResponse.Job)); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config index 940870dbb305..7ed9b4f2dd06 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config @@ -4,7 +4,7 @@ - + From 2cc13cfd0fc0e7dc1f05edec1c1e3d33dde82301 Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Tue, 19 Jan 2016 20:26:47 +0530 Subject: [PATCH 03/46] Fixing CSROJ --- .../Commands.SiteRecovery/Commands.SiteRecovery.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index 8a2808c646a9..f70d49e6528a 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -52,6 +52,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll False True From 58076312c7852140090be4de59f3d8a350c2bd4a Mon Sep 17 00:00:00 2001 From: sriramvu Date: Wed, 20 Jan 2016 11:40:07 +0530 Subject: [PATCH 04/46] taking hydra spec namespace change for SiteRecovery Vault management flow as it duplicates the one used by RecoveryServices Vault management flow --- .../ScenarioTests/SiteRecoveryTestsBase.cs | 20 +++++++++---------- .../Common/PSSiteRecoveryClient.cs | 10 +++++----- .../Common/PSSiteRecoveryVaultClient.cs | 4 ++-- .../PSSiteRecoveryVaultExtendedInfoClient.cs | 4 ++-- .../Common/SiteRecoveryCmdletBase.cs | 4 ++-- .../Commands.SiteRecovery/Models/PSObjects.cs | 2 +- .../Vault/GetAzureSiteRecoveryVault.cs | 2 +- .../Vault/NewAzureSiteRecoveryVault.cs | 2 +- .../Vault/RemoveAzureSiteRecoveryVault.cs | 2 +- 9 files changed, 25 insertions(+), 25 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs index a35a199af046..e3ac5696866f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs @@ -20,7 +20,7 @@ using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Microsoft.WindowsAzure.Commands.ScenarioTest; -using Microsoft.Azure.Management.RecoveryServices; +using Microsoft.Azure.Management.SiteRecoveryVault; using Microsoft.Azure.Management.SiteRecovery; using Microsoft.Azure.Test; using Microsoft.Azure.Common.Authentication; @@ -39,7 +39,7 @@ public abstract class SiteRecoveryTestsBase : RMTestBase private ASRVaultCreds asrVaultCreds = null; public SiteRecoveryManagementClient SiteRecoveryMgmtClient { get; private set; } - public RecoveryServicesManagementClient RecoveryServicesMgmtClient { get; private set; } + public SiteRecoveryVaultManagementClient RecoveryServicesMgmtClient { get; private set; } protected SiteRecoveryTestsBase() { @@ -81,7 +81,7 @@ protected SiteRecoveryTestsBase() protected void SetupManagementClients() { - RecoveryServicesMgmtClient = GetRecoveryServicesManagementClient(); + RecoveryServicesMgmtClient = GetSiteRecoveryVaultManagementClient(); SiteRecoveryMgmtClient = GetSiteRecoveryManagementClient(); helper.SetupManagementClients(RecoveryServicesMgmtClient, SiteRecoveryMgmtClient); @@ -106,9 +106,9 @@ protected void RunPowerShellTest(params string[] scripts) } } - private RecoveryServicesManagementClient GetRecoveryServicesManagementClient() + private SiteRecoveryVaultManagementClient GetSiteRecoveryVaultManagementClient() { - return GetServiceClient(); + return GetServiceClient(); } private SiteRecoveryManagementClient GetSiteRecoveryManagementClient() @@ -123,13 +123,13 @@ public T GetServiceClient() where T : class ServicePointManager.ServerCertificateValidationCallback = IgnoreCertificateErrorHandler; - if (typeof(T) == typeof(RecoveryServicesManagementClient)) + if (typeof(T) == typeof(SiteRecoveryVaultManagementClient)) { - RecoveryServicesManagementClient client; + SiteRecoveryVaultManagementClient client; if (testEnvironment.UsesCustomUri()) { - client = new RecoveryServicesManagementClient( + client = new SiteRecoveryVaultManagementClient( "Microsoft.RecoveryServicesBVTD2", "vaults", testEnvironment.Credentials as SubscriptionCloudCredentials, @@ -137,7 +137,7 @@ public T GetServiceClient() where T : class } else { - client = new RecoveryServicesManagementClient( + client = new SiteRecoveryVaultManagementClient( "Microsoft.RecoveryServicesBVTD2", "vaults", testEnvironment.Credentials as SubscriptionCloudCredentials); @@ -174,7 +174,7 @@ public T GetServiceClient() where T : class } - public static T GetRSMServiceClient(TestEnvironmentFactory factory, RecoveryServicesManagementClient client) where T : class + public static T GetRSMServiceClient(TestEnvironmentFactory factory, SiteRecoveryVaultManagementClient client) where T : class { TestEnvironment testEnvironment = factory.GetTestEnvironment(); diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryClient.cs index d6519926b927..4150fccf977d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryClient.cs @@ -25,8 +25,8 @@ using System.Xml; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; -using Microsoft.Azure.Management.RecoveryServices; -using Microsoft.Azure.Management.RecoveryServices.Models; +using Microsoft.Azure.Management.SiteRecoveryVault; +using Microsoft.Azure.Management.SiteRecoveryVault.Models; using Microsoft.Azure.Management.SiteRecovery; using Microsoft.Azure.Management.SiteRecovery.Models; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; @@ -52,7 +52,7 @@ public partial class PSRecoveryServicesClient /// /// Gets the value of recovery services management client. /// - public RecoveryServicesManagementClient GetRecoveryServicesClient + public SiteRecoveryVaultManagementClient GetRecoveryServicesClient { get { @@ -79,7 +79,7 @@ public RecoveryServicesManagementClient GetRecoveryServicesClient /// /// Recovery Services client. /// - private RecoveryServicesManagementClient recoveryServicesClient; + private SiteRecoveryVaultManagementClient recoveryServicesClient; /// /// End point Uri @@ -163,7 +163,7 @@ public PSRecoveryServicesClient(IAzureProfile azureProfile) cloudCredentials = AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(azureProfile.Context); this.recoveryServicesClient = - AzureSession.ClientFactory.CreateCustomClient( + AzureSession.ClientFactory.CreateCustomClient( asrVaultCreds.ResourceNamespace, asrVaultCreds.ARMResourceType, cloudCredentials, diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryVaultClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryVaultClient.cs index 724d474d0d05..fba9febf6fd2 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryVaultClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryVaultClient.cs @@ -13,8 +13,8 @@ // ---------------------------------------------------------------------------------- using System.Threading.Tasks; -using Microsoft.Azure.Management.RecoveryServices; -using Microsoft.Azure.Management.RecoveryServices.Models; +using Microsoft.Azure.Management.SiteRecoveryVault; +using Microsoft.Azure.Management.SiteRecoveryVault.Models; namespace Microsoft.Azure.Commands.SiteRecovery { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryVaultExtendedInfoClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryVaultExtendedInfoClient.cs index 6e15a1fcffe0..7251d1c31b8d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryVaultExtendedInfoClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryVaultExtendedInfoClient.cs @@ -19,8 +19,8 @@ using System.Web.Script.Serialization; using Hyak.Common; using Microsoft.Azure.Commands.SiteRecovery.Properties; -using Microsoft.Azure.Management.RecoveryServices; -using Microsoft.Azure.Management.RecoveryServices.Models; +using Microsoft.Azure.Management.SiteRecoveryVault; +using Microsoft.Azure.Management.SiteRecoveryVault.Models; using Microsoft.Azure.Management.SiteRecovery; using Microsoft.Azure.Management.SiteRecovery.Models; using Microsoft.Azure.Portal.HybridServicesCore; diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs index f061599f5620..42a705dc2b7e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs @@ -19,8 +19,8 @@ using System.Xml; using Hyak.Common; using Microsoft.Azure.Commands.ResourceManager.Common; -using Microsoft.Azure.Management.RecoveryServices; -using Microsoft.Azure.Management.RecoveryServices.Models; +using Microsoft.Azure.Management.SiteRecoveryVault; +using Microsoft.Azure.Management.SiteRecoveryVault.Models; using Microsoft.Azure.Management.SiteRecovery; using Microsoft.Azure.Management.SiteRecovery.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index c39a2740d0cd..54cda0343fc8 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -17,7 +17,7 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Runtime.Serialization; -using Microsoft.Azure.Management.RecoveryServices.Models; +using Microsoft.Azure.Management.SiteRecoveryVault.Models; using Microsoft.Azure.Management.SiteRecovery.Models; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using System.Web.Script.Serialization; diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVault.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVault.cs index 8712b1251a4a..3b1148c3d5ad 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVault.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVault.cs @@ -16,7 +16,7 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; -using Microsoft.Azure.Management.RecoveryServices.Models; +using Microsoft.Azure.Management.SiteRecoveryVault.Models; namespace Microsoft.Azure.Commands.SiteRecovery { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs index 924c652509ca..cdca55ac4012 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using System.Net; using Microsoft.Azure.Commands.SiteRecovery.Properties; -using Microsoft.Azure.Management.RecoveryServices.Models; +using Microsoft.Azure.Management.SiteRecoveryVault.Models; namespace Microsoft.Azure.Commands.SiteRecovery { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/RemoveAzureSiteRecoveryVault.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/RemoveAzureSiteRecoveryVault.cs index c669b9932b2b..7805663b03bf 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/RemoveAzureSiteRecoveryVault.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/RemoveAzureSiteRecoveryVault.cs @@ -16,7 +16,7 @@ using System.Management.Automation; using System.Net; using Microsoft.Azure.Commands.SiteRecovery.Properties; -using Microsoft.Azure.Management.RecoveryServices.Models; +using Microsoft.Azure.Management.SiteRecoveryVault.Models; namespace Microsoft.Azure.Commands.SiteRecovery { From 16505e5cd9366c3ebc273ab8e0cb7165821cbbc6 Mon Sep 17 00:00:00 2001 From: sriramvu Date: Wed, 20 Jan 2016 12:05:22 +0530 Subject: [PATCH 05/46] updated Vault related artifacts with Recovery Services (RS) rather than Site Recovery (SR) --- .../Common/PSRecoveryServicesClient.cs | 8 +-- ...RecoveryServicesVaultExtendedInfoClient.cs | 34 +++++----- .../Models/PSContracts.cs | 62 +++---------------- .../Models/PSObjects.cs | 12 ++-- .../Models/PSParameterSets.cs | 2 +- .../Utilities/Utilities.cs | 24 +++---- ...zureRMRecoveryServicesVaultSettingsFile.cs | 16 ++--- 7 files changed, 55 insertions(+), 103 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesClient.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesClient.cs index ff3fe03ae1ec..e72201db40ce 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesClient.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesClient.cs @@ -64,7 +64,7 @@ public RecoveryServicesManagementClient GetRecoveryServicesClient "Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1401:FieldsMustBePrivate", Justification = "For Resource Credentials.")] - public static ASRVaultCreds asrVaultCreds = new ASRVaultCreds(); + public static ARSVaultCreds arsVaultCreds = new ARSVaultCreds(); /// /// Recovery Services client. @@ -86,7 +86,7 @@ public PSRecoveryServicesClient(IAzureProfile azureProfile) string resourceType = string.Empty; // Get Resource provider namespace from config if needed to communicate with internal deployments - if (string.IsNullOrEmpty(asrVaultCreds.ResourceNamespace)) + if (string.IsNullOrEmpty(arsVaultCreds.ResourceNamespace)) { if (appSettings.Settings.Count == 0) { @@ -100,7 +100,7 @@ public PSRecoveryServicesClient(IAzureProfile azureProfile) : appSettings.Settings["ProviderNamespace"].Value; } - Utilities.UpdateCurrentVaultContext(new ASRVaultCreds() + Utilities.UpdateCurrentVaultContext(new ARSVaultCreds() { ResourceNamespace = resourceNamespace, ARMResourceType = resourceType @@ -109,7 +109,7 @@ public PSRecoveryServicesClient(IAzureProfile azureProfile) this.recoveryServicesClient = AzureSession.ClientFactory.CreateCustomClient( - asrVaultCreds.ResourceNamespace, + arsVaultCreds.ResourceNamespace, AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(azureProfile.Context), azureProfile.Context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ResourceManager)); } diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultExtendedInfoClient.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultExtendedInfoClient.cs index 1020440f6548..d3a1d50bf63a 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultExtendedInfoClient.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultExtendedInfoClient.cs @@ -39,8 +39,8 @@ public async Task GetExtendedInfo() { ResourceExtendedInformationResponse response = await this.recoveryServicesClient.VaultExtendedInfo.GetExtendedInfoAsync( - asrVaultCreds.ResourceGroupName, - asrVaultCreds.ResourceName, + arsVaultCreds.ResourceGroupName, + arsVaultCreds.ResourceName, this.GetRequestHeaders()); return response.ResourceExtendedInformation; @@ -54,8 +54,8 @@ await this.recoveryServicesClient.VaultExtendedInfo.GetExtendedInfoAsync( public AzureOperationResponse CreateExtendedInfo(ResourceExtendedInformationArgs extendedInfoArgs) { return this.recoveryServicesClient.VaultExtendedInfo.CreateExtendedInfo( - asrVaultCreds.ResourceGroupName, - asrVaultCreds.ResourceName, + arsVaultCreds.ResourceGroupName, + arsVaultCreds.ResourceName, extendedInfoArgs, this.GetRequestHeaders()); } @@ -68,8 +68,8 @@ public AzureOperationResponse CreateExtendedInfo(ResourceExtendedInformationArgs public async Task UpdateVaultCertificate(CertificateArgs args, string certFriendlyName) { return await this.recoveryServicesClient.VaultExtendedInfo.UploadCertificateAsync( - asrVaultCreds.ResourceGroupName, - asrVaultCreds.ResourceName, + arsVaultCreds.ResourceGroupName, + arsVaultCreds.ResourceName, args, certFriendlyName, this.GetRequestHeaders()); } @@ -80,15 +80,15 @@ public async Task UpdateVaultCertificate(CertificateA /// certificate to be uploaded /// vault object /// credential object - public ASRVaultCreds GenerateVaultCredential(X509Certificate2 managementCert, ARSVault vault, ASRSite site) + public ARSVaultCreds GenerateVaultCredential(X509Certificate2 managementCert, ARSVault vault, ASRSite site) { - ASRVaultCreds currentVaultContext = PSRecoveryServicesClient.asrVaultCreds; + ARSVaultCreds currentVaultContext = PSRecoveryServicesClient.arsVaultCreds; string resourceProviderNamespace = string.Empty; string resourceType = string.Empty; Utilities.GetResourceProviderNamespaceAndType(vault.ID, out resourceProviderNamespace, out resourceType); // Update vault settings with the working vault to generate file - Utilities.UpdateCurrentVaultContext(new ASRVaultCreds() + Utilities.UpdateCurrentVaultContext(new ARSVaultCreds() { ResourceGroupName = vault.ResouceGroupName, ResourceName = vault.Name, @@ -112,7 +112,7 @@ public ASRVaultCreds GenerateVaultCredential(X509Certificate2 managementCert, AR acsDetails = uploadCertificate.Result; channelIntegrityKey = getChannelIntegrityKey.Result; - ASRVaultCreds asrVaultCreds = this.GenerateCredentialObject( + ARSVaultCreds arsVaultCreds = this.GenerateCredentialObject( managementCert, acsDetails, channelIntegrityKey, @@ -122,7 +122,7 @@ public ASRVaultCreds GenerateVaultCredential(X509Certificate2 managementCert, AR // Update back the original vault settings Utilities.UpdateCurrentVaultContext(currentVaultContext); - return asrVaultCreds; + return arsVaultCreds; } /// @@ -130,12 +130,12 @@ public ASRVaultCreds GenerateVaultCredential(X509Certificate2 managementCert, AR /// /// vault object /// credential object - public ASRVaultCreds ChangeVaultContext(ARSVault vault) + public ARSVaultCreds ChangeVaultContext(ARSVault vault) { string resourceProviderNamespace = string.Empty; string resourceType = string.Empty; Utilities.GetResourceProviderNamespaceAndType(vault.ID, out resourceProviderNamespace, out resourceType); - Utilities.UpdateCurrentVaultContext(new ASRVaultCreds() + Utilities.UpdateCurrentVaultContext(new ARSVaultCreds() { ResourceGroupName = vault.ResouceGroupName, ResourceName = vault.Name, @@ -148,7 +148,7 @@ public ASRVaultCreds ChangeVaultContext(ARSVault vault) getChannelIntegrityKey.Wait(); // Update vault settings along with Channel integrity key - Utilities.UpdateCurrentVaultContext(new ASRVaultCreds() + Utilities.UpdateCurrentVaultContext(new ARSVaultCreds() { ResourceGroupName = vault.ResouceGroupName, ResourceName = vault.Name, @@ -157,7 +157,7 @@ public ASRVaultCreds ChangeVaultContext(ARSVault vault) ARMResourceType = resourceType }); - return asrVaultCreds; + return arsVaultCreds; } /// @@ -253,7 +253,7 @@ private ResourceExtendedInformation CreateVaultExtendedInformation() /// vault object /// site object /// vault credential object - private ASRVaultCreds GenerateCredentialObject(X509Certificate2 managementCert, UploadCertificateResponse acsDetails, string channelIntegrityKey, ARSVault vault, ASRSite site) + private ARSVaultCreds GenerateCredentialObject(X509Certificate2 managementCert, UploadCertificateResponse acsDetails, string channelIntegrityKey, ARSVault vault, ASRSite site) { string serializedCertifivate = Convert.ToBase64String(managementCert.Export(X509ContentType.Pfx)); @@ -262,7 +262,7 @@ private ASRVaultCreds GenerateCredentialObject(X509Certificate2 managementCert, string resourceProviderNamespace = string.Empty; string resourceType = string.Empty; Utilities.GetResourceProviderNamespaceAndType(vault.ID, out resourceProviderNamespace, out resourceType); - ASRVaultCreds vaultCreds = new ASRVaultCreds( + ARSVaultCreds vaultCreds = new ARSVaultCreds( vault.SubscriptionId, vault.Name, serializedCertifivate, diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs index dacd4704d87e..42376a10c813 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs @@ -190,54 +190,6 @@ public class ARMExceptionDetails public string Target { get; private set; } } - /// - /// Error contract returned when some exception occurs in ASR REST API. - /// - [SuppressMessage( - "Microsoft.StyleCop.CSharp.MaintainabilityRules", - "SA1402:FileMayOnlyContainASingleClass", - Justification = "Keeping all contracts together.")] - [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")] - public class Error - { - /// - /// Initializes a new instance of the class. - /// - public Error() - { - } - - /// - /// Gets or sets error code. - /// - [DataMember] - public string Code { get; set; } - - /// - /// Gets or sets error message. - /// - [DataMember] - public string Message { get; set; } - - /// - /// Gets or sets possible causes of error. - /// - [DataMember] - public string PossibleCauses { get; set; } - - /// - /// Gets or sets recommended action to resolve error. - /// - [DataMember] - public string RecommendedAction { get; set; } - - /// - /// Gets or sets client request Id. - /// - [DataMember(Name = "ActivityId")] - public string ClientRequestId { get; set; } - } - /// /// CIK token details. /// @@ -361,7 +313,7 @@ public VaultCreds() public VaultCreds(string subscriptionId, string resourceName, string managementCert, AcsNamespace acsNamespace) { this.SubscriptionId = subscriptionId; - this.ResourceType = Constants.ASRVaultType; + this.ResourceType = Constants.VaultType; this.ResourceName = resourceName; this.ManagementCert = managementCert; this.AcsNamespace = acsNamespace; @@ -404,25 +356,25 @@ public VaultCreds(string subscriptionId, string resourceName, string managementC } /// - /// Class to define ASR Vault credentials + /// Class to define ARS Vault credentials /// [SuppressMessage( "Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1402:FileMayOnlyContainASingleClass", Justification = "Keeping all contracts together.")] - public class ASRVaultCreds : VaultCreds + public class ARSVaultCreds : VaultCreds { #region Constructores /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - public ASRVaultCreds() + public ARSVaultCreds() { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// subscription Id /// resource name @@ -432,7 +384,7 @@ public ASRVaultCreds() /// cloud service name /// custom site Id /// custom site name - public ASRVaultCreds( + public ARSVaultCreds( string subscriptionId, string resourceName, string managementCert, diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSObjects.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSObjects.cs index d9e62e254fd9..66b3d52b51df 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSObjects.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSObjects.cs @@ -22,9 +22,9 @@ namespace Microsoft.Azure.Commands.RecoveryServices public class Constants { /// - /// ASR vault type + /// Vault type /// - public const string ASRVaultType = "HyperVRecoveryManagerVault"; + public const string VaultType = "HyperVRecoveryManagerVault"; /// /// Vault Credential version. @@ -68,7 +68,7 @@ public ARSVault(Vault vault) this.Location = vault.Location; this.ResouceGroupName = PSRecoveryServicesClient.GetResourceGroup(vault.Id); this.SubscriptionId = PSRecoveryServicesClient.GetSubscriptionId(vault.Id); - this.Properties = new ASRVaultProperties(); + this.Properties = new ARSVaultProperties(); this.Properties.ProvisioningState = vault.Properties.ProvisioningState; } @@ -84,7 +84,7 @@ public ARSVault(VaultCreateResponse vault) this.Location = vault.Location; this.ResouceGroupName = PSRecoveryServicesClient.GetResourceGroup(vault.Id); this.SubscriptionId = PSRecoveryServicesClient.GetSubscriptionId(vault.Id); - this.Properties = new ASRVaultProperties(); + this.Properties = new ARSVaultProperties(); this.Properties.ProvisioningState = vault.Properties.ProvisioningState; } @@ -124,7 +124,7 @@ public ARSVault(VaultCreateResponse vault) /// /// Gets or sets Properties. /// - public ASRVaultProperties Properties { get; set; } + public ARSVaultProperties Properties { get; set; } #endregion } @@ -132,7 +132,7 @@ public ARSVault(VaultCreateResponse vault) /// /// Azure Site Recovery Vault properties. /// - public class ASRVaultProperties + public class ARSVaultProperties { #region Properties diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSParameterSets.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSParameterSets.cs index d5b944397291..e1cdaabab6c8 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSParameterSets.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSParameterSets.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.Commands.RecoveryServices /// /// Parameter Sets used for Azure Site Recovery commands. /// - internal static class ASRParameterSets + internal static class ARSParameterSets { /// /// For default parameter set diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Utilities/Utilities.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Utilities/Utilities.cs index ecdaffeb3c24..5a78f03c45c3 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Utilities/Utilities.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Utilities/Utilities.cs @@ -102,22 +102,22 @@ public static string WriteToFile(T fileContent, string filePath, string fileN /// /// Updates current Vault context. /// - /// ASR Vault credentials - public static void UpdateCurrentVaultContext(ASRVaultCreds asrVaultCreds) + /// ARS Vault credentials + public static void UpdateCurrentVaultContext(ARSVaultCreds arsVaultCreds) { object updateVaultContextOneAtATime = new object(); lock (updateVaultContextOneAtATime) { - PSRecoveryServicesClient.asrVaultCreds.ResourceName = - asrVaultCreds.ResourceName; - PSRecoveryServicesClient.asrVaultCreds.ResourceGroupName = - asrVaultCreds.ResourceGroupName; - PSRecoveryServicesClient.asrVaultCreds.ChannelIntegrityKey = - asrVaultCreds.ChannelIntegrityKey; - PSRecoveryServicesClient.asrVaultCreds.ResourceNamespace = - asrVaultCreds.ResourceNamespace; - PSRecoveryServicesClient.asrVaultCreds.ARMResourceType = - asrVaultCreds.ARMResourceType; + PSRecoveryServicesClient.arsVaultCreds.ResourceName = + arsVaultCreds.ResourceName; + PSRecoveryServicesClient.arsVaultCreds.ResourceGroupName = + arsVaultCreds.ResourceGroupName; + PSRecoveryServicesClient.arsVaultCreds.ChannelIntegrityKey = + arsVaultCreds.ChannelIntegrityKey; + PSRecoveryServicesClient.arsVaultCreds.ResourceNamespace = + arsVaultCreds.ResourceNamespace; + PSRecoveryServicesClient.arsVaultCreds.ARMResourceType = + arsVaultCreds.ARMResourceType; } } diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/GetAzureRMRecoveryServicesVaultSettingsFile.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/GetAzureRMRecoveryServicesVaultSettingsFile.cs index 2c952368f686..6fc228227359 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/GetAzureRMRecoveryServicesVaultSettingsFile.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/GetAzureRMRecoveryServicesVaultSettingsFile.cs @@ -38,22 +38,22 @@ public class GetAzureRmRecoveryServicesVaultSettingsFile : RecoveryServicesCmdle /// /// Gets or sets vault Object. /// - [Parameter(ParameterSetName = ASRParameterSets.ByDefault, Mandatory = true, ValueFromPipeline = true)] - [Parameter(ParameterSetName = ASRParameterSets.ForSite, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ARSParameterSets.ByDefault, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ARSParameterSets.ForSite, Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ARSVault Vault { get; set; } /// /// Gets or sets Site Identifier. /// - [Parameter(ParameterSetName = ASRParameterSets.ForSite, Mandatory = true)] + [Parameter(ParameterSetName = ARSParameterSets.ForSite, Mandatory = true)] [ValidateNotNullOrEmpty] public String SiteIdentifier { get; set; } /// /// Gets or sets SiteFriendlyName. /// - [Parameter(ParameterSetName = ASRParameterSets.ForSite, Mandatory = true)] + [Parameter(ParameterSetName = ARSParameterSets.ForSite, Mandatory = true)] [ValidateNotNullOrEmpty] public String SiteFriendlyName { get; set; } @@ -63,8 +63,8 @@ public class GetAzureRmRecoveryServicesVaultSettingsFile : RecoveryServicesCmdle /// /// Gets or sets vault Object. /// - [Parameter(ParameterSetName = ASRParameterSets.ByDefault)] - [Parameter(ParameterSetName = ASRParameterSets.ForSite)] + [Parameter(ParameterSetName = ARSParameterSets.ByDefault)] + [Parameter(ParameterSetName = ARSParameterSets.ForSite)] public string Path { get; set; } #endregion Parameters @@ -106,7 +106,7 @@ private void GetVaultSettingsFile() } // Generate file. - ASRVaultCreds vaultCreds = RecoveryServicesClient.GenerateVaultCredential( + ARSVaultCreds vaultCreds = RecoveryServicesClient.GenerateVaultCredential( cert, this.Vault, site); @@ -117,7 +117,7 @@ private void GetVaultSettingsFile() // write the content to a file. VaultSettingsFilePath output = new VaultSettingsFilePath() { - FilePath = Utilities.WriteToFile(vaultCreds, filePath, fileName) + FilePath = Utilities.WriteToFile(vaultCreds, filePath, fileName) }; // print the path to the user. From 24827f778603204582ad2d9600fcb674cd908e55 Mon Sep 17 00:00:00 2001 From: sriramvu Date: Wed, 20 Jan 2016 17:16:40 +0530 Subject: [PATCH 06/46] RefreshServer --- .../Commands.SiteRecovery.csproj | 1 + ...eRecoveryRecoveryServicesProviderClient.cs | 11 +++ .../Server/RefreshAzureSiteRecoveryServer.cs | 73 +++++++++++++++++++ 3 files changed, 85 insertions(+) create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index 04397d238170..ee8160f59e64 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -134,6 +134,7 @@ + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs index 7e24b59e9ddb..67097ef15670 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs @@ -66,5 +66,16 @@ public LongRunningOperationResponse PurgeAzureSiteRecoveryProvider(string fabric { return this.GetSiteRecoveryClient().RecoveryServicesProvider.BeginPurging(fabricId, providerId, this.GetRequestHeaders()); } + + /// + /// Refresh Azure Site Recovery Provider. + /// + /// Fabric ID + /// Provider ID + /// Operation response + public LongRunningOperationResponse RefreshAzureSiteRecoveryProvider(string fabricId, string providerId) + { + return this.GetSiteRecoveryClient().RecoveryServicesProvider.BeginRefreshing(fabricId, providerId, this.GetRequestHeaders()); + } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs new file mode 100644 index 000000000000..2add68fceb39 --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs @@ -0,0 +1,73 @@ +// ---------------------------------------------------------------------------------- +// +// 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.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Retrieves Azure Site Recovery Server. + /// + [Cmdlet(VerbsData.Update, "AzureRmSiteRecoveryServer", DefaultParameterSetName = ASRParameterSets.Default)] + public class UpdateAzureRmSiteRecoveryServer : SiteRecoveryCmdletBase + { + #region Parameters + + /// + /// Gets or sets the Server. + /// + [Parameter(Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ASRServer Server { get; set; } + + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + RefreshServer(); + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + + /// + /// Refresh Server + /// + private void RefreshServer() + { + if ((String.Compare(this.Server.FabricType, Constants.VMM) != 0 && String.Compare(this.Server.FabricType, Constants.HyperVSite) != 0)) + { + throw new PSInvalidOperationException(Properties.Resources.InvalidServerType); + } + + LongRunningOperationResponse response = + RecoveryServicesClient.RefreshAzureSiteRecoveryProvider(Utilities.GetValueFromArmId(this.Server.ID, ARMResourceTypeConstants.ReplicationFabrics), this.Server.Name); + + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + } + } +} \ No newline at end of file From 382d7df6a007ccdd0a3acc4e0e463e040649e30e Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Wed, 20 Jan 2016 19:52:11 +0530 Subject: [PATCH 07/46] Taking CR comments and changing cmdlet names for mapping (storage classification) cmdlet --- .../Commands.SiteRecovery.csproj | 4 +- ...SiteRecoveryStorageClassificationClient.cs | 22 +++++---- .../Common/SiteRecoveryCmdletBase.cs | 15 ++++++ .../Properties/Resources.Designer.cs | 9 ---- .../Properties/Resources.resx | 3 -- ...teRecoveryStorageClassificationMapping.cs} | 10 ++-- ...teRecoveryStorageClassificationMapping.cs} | 47 +++++-------------- .../Utilities/Utilities.cs | 13 +++-- 8 files changed, 57 insertions(+), 66 deletions(-) rename src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/{StartAzureSiteRecoveryStorageClassificationMappingJob.cs => NewAzureRmSiteRecoveryStorageClassificationMapping.cs} (88%) rename src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/{StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs => RemoveAzureSiteRecoveryStorageClassificationMapping.cs} (51%) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index f70d49e6528a..bb6ebb3bfa94 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -170,8 +170,8 @@ - - + + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs index c6d35782b0e5..ab9ca5fb0a10 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryStorageClassificationClient.cs @@ -86,21 +86,23 @@ public Task EnumerateStorageClassificationMappingsAsync(Action - /// Starts job for unmapping storage classifications. + /// Starts job for unmapping classifications /// - /// Classification mapping. - /// Operation response. + /// Fabric name name. + /// Storage classification name. + /// Classification mapping name. + /// Operation result. public LongRunningOperationResponse UnmapStorageClassifications( - StorageClassificationMapping mapping) + string fabricName, + string storageClassificationName, + string mappingName) { - string[] tokens = mapping.Id.UnFormatArmId( - ARMResourceIdPaths.StorageClassificationMappingResourceIdPath); return this.GetSiteRecoveryClient().StorageClassificationMapping .BeginUnpairStorageClassification( - tokens[0], - tokens[1], - tokens[2], - this.GetRequestHeaders()); + fabricName, + storageClassificationName, + mappingName, + customRequestHeaders: this.GetRequestHeaders()); } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs index f061599f5620..805ca52d7ca6 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs @@ -61,6 +61,21 @@ internal PSRecoveryServicesClient RecoveryServicesClient } } + /// + /// Overrides base implementation of Process record. + /// + protected override void ProcessRecord() + { + try + { + base.ProcessRecord(); + } + catch (Exception ex) + { + this.HandleException(ex); + } + } + /// /// Exception handler. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs index dae70cd2446e..60b043deec3a 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs @@ -260,15 +260,6 @@ internal static string NicNotFoundInVMForUpdateVmProperties { } } - /// - /// Looks up a localized string similar to No storage classification mapping found with Id {0}. - /// - internal static string NoClassificationMappingFound { - get { - return ResourceManager.GetString("NoClassificationMappingFound", resourceCulture); - } - } - /// /// Looks up a localized string similar to RecoveryServices client is null, please check Resource, Cloud Service information in Vault Settings. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx index 93b802efe5eb..0c1045f42868 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx @@ -310,7 +310,4 @@ Please provide a storage account with the same location as that of the vault. SiteRecovery vault type will be deprecated soon. Please use RecoveryServices vault type instead. - - No storage classification mapping found with Id {0} - \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs similarity index 88% rename from src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs rename to src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs index d89d72c9297e..a0d2f5851ce3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationMappingJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System; using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Management.SiteRecovery.Models; @@ -21,9 +22,9 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// /// Pairs storage classification /// - [Cmdlet(VerbsLifecycle.Start, "AzureRmSiteRecoveryStorageClassificationMappingJob", DefaultParameterSetName = ASRParameterSets.Default)] + [Cmdlet(VerbsCommon.New, "AzureRmSiteRecoveryStorageClassificationMapping", DefaultParameterSetName = ASRParameterSets.Default)] [OutputType(typeof(IEnumerable))] - public class StartAzureSiteRecoveryStorageClassificationMappingJob : SiteRecoveryCmdletBase + public class NewAzureRmSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdletBase { #region Parameters @@ -48,9 +49,10 @@ public class StartAzureSiteRecoveryStorageClassificationMappingJob : SiteRecover public override void ExecuteCmdlet() { string armName = string.Format( - "StrgMap_{0}_{1}", + "StrgMap_{0}_{1}_{2}", PrimaryStorageClassification.Name, - RecoveryStorageClassification.Name); + RecoveryStorageClassification.Name, + Guid.NewGuid()); var props = new StorageClassificationMappingInputProperties() { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs similarity index 51% rename from src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs rename to src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs index 8a4ef1e7c834..e92b37924547 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/StartAzureSiteRecoveryStorageClassificationUnmappingJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs @@ -24,9 +24,9 @@ namespace Microsoft.Azure.Commands.SiteRecovery // /// Pairs storage classification /// - [Cmdlet(VerbsLifecycle.Start, "AzureRmSiteRecoveryStorageClassificationUnmappingJob", DefaultParameterSetName = ASRParameterSets.Default)] + [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryStorageClassificationMapping", DefaultParameterSetName = ASRParameterSets.Default)] [OutputType(typeof(IEnumerable))] - public class StartAzureSiteRecoveryStorageClassificationUnmappingJob : SiteRecoveryCmdletBase + public class RemoveAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdletBase { #region Parameters @@ -43,38 +43,17 @@ public class StartAzureSiteRecoveryStorageClassificationUnmappingJob : SiteRecov /// public override void ExecuteCmdlet() { - List storageClassificationMappings - = new List(); - - Task mappingsTask = - RecoveryServicesClient.EnumerateStorageClassificationMappingsAsync((entities) => - { - storageClassificationMappings.AddRange(entities); - }); - - Task.WaitAll(mappingsTask); - - StorageClassificationMapping selectedMap = storageClassificationMappings - .Where(item => - item.Id.Equals(StorageClassificationMapping.Id)) - .FirstOrDefault(); - - if (selectedMap == null) - { - throw new ArgumentException( - string.Format(Properties.Resources.NoClassificationMappingFound, - StorageClassificationMapping.Id)); - } - else - { - var operationResponse = - RecoveryServicesClient.UnmapStorageClassifications(selectedMap); - JobResponse jobResponse = - RecoveryServicesClient.GetAzureSiteRecoveryJobDetails( - PSRecoveryServicesClient.GetJobIdFromReponseLocation(operationResponse.Location)); - - base.WriteObject(new ASRJob(jobResponse.Job)); - } + string[] tokens = StorageClassificationMapping.Id.UnFormatArmId( + ARMResourceIdPaths.StorageClassificationMappingResourceIdPath); + var operationResponse = RecoveryServicesClient.UnmapStorageClassifications( + fabricName: tokens[0], + storageClassificationName: tokens[1], + mappingName: tokens[2]); + JobResponse jobResponse = + RecoveryServicesClient.GetAzureSiteRecoveryJobDetails( + PSRecoveryServicesClient.GetJobIdFromReponseLocation(operationResponse.Location)); + + base.WriteObject(new ASRJob(jobResponse.Job)); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs index 419a1f965c0d..9b59622e878d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs @@ -205,14 +205,19 @@ public static string[] UnFormatArmId(this string data, string format) List tokens = new List(); string processData = string.Empty; + if (string.IsNullOrEmpty(dataCopy)) + { + throw new Exception("Null and empty strings are not valid resource Ids - " + data); + } + // First truncate data string to point from where format string starts. // We start from 1 index so that if url starts with / we avoid picking the first /. int firstTokenEnd = format.IndexOf("/", 1); int matchIndex = dataCopy.ToLower().IndexOf(format.Substring(0, firstTokenEnd).ToLower()); - if (matchIndex == -1 || string.IsNullOrEmpty(dataCopy)) + if (matchIndex == -1) { - throw new Exception("Invalid ARM Id - " + data); + throw new Exception("Invalid resource Id - " + data); } processData = dataCopy.Substring(matchIndex); @@ -251,13 +256,13 @@ public static string[] UnFormatArmId(this string data, string format) } else { - throw new Exception("Invalid ARM Id - " + data); + throw new Exception("Invalid resource Id - " + data); } } catch (Exception ex) { throw new Exception( - string.Format("Invalid ARM Id - {0}. Exception - {1} ", data, ex)); + string.Format("Invalid resource Id - {0}. Exception - {1} ", data, ex)); } } From d9b86fc000fda0ebe0a17b4be1488e0bfaed444a Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Wed, 20 Jan 2016 20:49:53 +0530 Subject: [PATCH 08/46] Shifting to central exception handling for SiteRecovery cmdlets After this instead of overriding ExecuteCmdlet, ExecuteSiteRecoveryCmdlet needs to be overriden. Exceptions will then be automatically taken care of. --- .../Common/SiteRecoveryCmdletBase.cs | 15 +- .../Job/GetAzureSiteRecoveryJob.cs | 38 ++-- .../Job/RestartAzureSiteRecoveryJob.cs | 27 +-- .../Job/ResumeAzureSiteRecoveryJob.cs | 27 +-- .../Job/StopAzureSiteRecoveryJob.cs | 27 +-- .../Network/GetAzureRMSiteRecoveryNetwork.cs | 37 ++- .../GetAzureRMSiteRecoveryNetworkMapping.cs | 33 ++- .../NewAzureRMSiteRecoveryNetworkMapping.cs | 25 +- ...RemoveAzureRMSiteRecoveryNetworkMapping.cs | 31 ++- .../Policy/GetAzureSiteRecoveryPolicy.cs | 31 ++- .../Policy/NewAzureSiteRecoveryPolicy.cs | 24 +- .../Policy/RemoveAzureSiteRecoveryPolicy.cs | 21 +- ...rtAzureSiteRecoveryPolicyAssociationJob.cs | 25 +- ...tAzureSiteRecoveryPolicyDissociationJob.cs | 25 +- ...GetAzureSiteRecoveryProtectionContainer.cs | 31 ++- .../GetAzureSiteRecoveryProtectionEntity.cs | 47 ++-- .../SetAzureSiteRecoveryProtectionEntity.cs | 213 +++++++++--------- ...StartAzureSiteRecoveryCommitFailoverJob.cs | 31 ++- ...tartAzureSiteRecoveryPlannedFailoverJob.cs | 35 ++- .../StartAzureSiteRecoveryTestFailoverJob.cs | 60 +++-- ...rtAzureSiteRecoveryUnPlannedFailoverJob.cs | 31 ++- ...ateAzureSiteRecoveryProtectionDirection.cs | 30 +-- .../Server/GetAzureSiteRecoveryServer.cs | 31 ++- .../Server/RemoveAzureSiteRecoveryServer.cs | 14 +- .../Site/GetAzureSiteRecoverySite.cs | 33 ++- .../Site/NewAzureSiteRecoverySite.cs | 23 +- .../Site/RemoveAzureSiteRecoverySite.cs | 47 ++-- ...tAzureSiteRecoveryStorageClassification.cs | 4 +- ...iteRecoveryStorageClassificationMapping.cs | 4 +- ...iteRecoveryStorageClassificationMapping.cs | 7 +- ...iteRecoveryStorageClassificationMapping.cs | 6 +- .../VM/GetAzureSiteRecoveryVM.cs | 35 ++- .../VM/SetAzureSiteRecoveryVM.cs | 185 ++++++++------- .../Vault/GetAzureSiteRecoveryVault.cs | 19 +- .../GetAzureSiteRecoveryVaultSettings.cs | 4 +- .../GetAzureSiteRecoveryVaultSettingsFile.cs | 7 +- ...mportAzureSiteRecoveryVaultSettingsFile.cs | 27 +-- .../Vault/NewAzureSiteRecoveryVault.cs | 31 ++- .../Vault/RemoveAzureSiteRecoveryVault.cs | 21 +- .../SetAzureSiteRecoveryVaultSettings.cs | 4 +- 40 files changed, 611 insertions(+), 755 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs index 805ca52d7ca6..7b073bb22817 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs @@ -62,13 +62,22 @@ internal PSRecoveryServicesClient RecoveryServicesClient } /// - /// Overrides base implementation of Process record. + /// Virtual method to be implemented by Site Recovery cmdlets. /// - protected override void ProcessRecord() + public virtual void ExecuteSiteRecoveryCmdlet() + { + // Do Nothing + } + + /// + /// + /// + public override void ExecuteCmdlet() { try { - base.ProcessRecord(); + base.ExecuteCmdlet(); + ExecuteSiteRecoveryCmdlet(); } catch (Exception ex) { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs index fbdc32239f62..88d4b44af170 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs @@ -86,30 +86,24 @@ public class GetAzureSiteRecoveryJob : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try + base.ExecuteSiteRecoveryCmdlet(); + switch (this.ParameterSetName) { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByObject: - this.Name = this.Job.Name; - this.GetByName(); - break; - - case ASRParameterSets.ByName: - this.GetByName(); - break; - - case ASRParameterSets.ByParam: - default: - this.GetByParam(); - break; - } - } - catch (Exception exception) - { - this.HandleException(exception); + case ASRParameterSets.ByObject: + this.Name = this.Job.Name; + this.GetByName(); + break; + + case ASRParameterSets.ByName: + this.GetByName(); + break; + + case ASRParameterSets.ByParam: + default: + this.GetByParam(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/RestartAzureSiteRecoveryJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/RestartAzureSiteRecoveryJob.cs index afb96faddb4b..c0ec64c89e19 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/RestartAzureSiteRecoveryJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/RestartAzureSiteRecoveryJob.cs @@ -44,25 +44,20 @@ public class RestartAzureSiteRecoveryJob : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByObject: - this.Name = this.Job.Name; - this.RestartByName(); - break; + base.ExecuteSiteRecoveryCmdlet(); - case ASRParameterSets.ByName: - this.RestartByName(); - break; - } - } - catch (Exception exception) + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByObject: + this.Name = this.Job.Name; + this.RestartByName(); + break; + + case ASRParameterSets.ByName: + this.RestartByName(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/ResumeAzureSiteRecoveryJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/ResumeAzureSiteRecoveryJob.cs index 0f866e6c91ff..7804251be773 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/ResumeAzureSiteRecoveryJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/ResumeAzureSiteRecoveryJob.cs @@ -51,25 +51,20 @@ public class ResumeAzureSiteRecoveryJob : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByObject: - this.Name = this.Job.Name; - this.ResumesByName(); - break; + base.ExecuteSiteRecoveryCmdlet(); - case ASRParameterSets.ByName: - this.ResumesByName(); - break; - } - } - catch (Exception exception) + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByObject: + this.Name = this.Job.Name; + this.ResumesByName(); + break; + + case ASRParameterSets.ByName: + this.ResumesByName(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/StopAzureSiteRecoveryJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/StopAzureSiteRecoveryJob.cs index 8574a4bbac3d..10c982141dcf 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/StopAzureSiteRecoveryJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/StopAzureSiteRecoveryJob.cs @@ -44,25 +44,20 @@ public class StopAzureSiteRecoveryJob : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByObject: - this.Name = this.Job.Name; - this.StopByName(); - break; + base.ExecuteSiteRecoveryCmdlet(); - case ASRParameterSets.ByName: - this.StopByName(); - break; - } - } - catch (Exception exception) + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByObject: + this.Name = this.Job.Name; + this.StopByName(); + break; + + case ASRParameterSets.ByName: + this.StopByName(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetwork.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetwork.cs index dd405a3e0e53..64176a9bc768 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetwork.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetwork.cs @@ -55,29 +55,24 @@ public class GetAzureRMSiteRecoveryNetwork : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByServerObject: - this.GetByServer(); - break; - case ASRParameterSets.ByName: - this.GetByName(); - break; - case ASRParameterSets.ByFriendlyName: - this.GetByFriendlyName(); - break; - case ASRParameterSets.Default: - this.GetAllNetworks(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByServerObject: + this.GetByServer(); + break; + case ASRParameterSets.ByName: + this.GetByName(); + break; + case ASRParameterSets.ByFriendlyName: + this.GetByFriendlyName(); + break; + case ASRParameterSets.Default: + this.GetAllNetworks(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs index 12a9b7d6c9eb..9b0bb9030fb7 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs @@ -61,30 +61,25 @@ public class GetAzureRMSiteRecoveryNetworkMapping : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - networkMappingsListResponse = + base.ExecuteSiteRecoveryCmdlet(); + + networkMappingsListResponse = RecoveryServicesClient .GetAzureSiteRecoveryNetworkMappings(); - switch (this.ParameterSetName) - { - case ASRParameterSets.EnterpriseToEnterprise: - this.FilterE2EMappings(); - break; - case ASRParameterSets.EnterpriseToAzure: - this.FilterE2AMappings(); - break; - case ASRParameterSets.Default: - WriteNetworkMappings(networkMappingsListResponse.NetworkMappingsList); - break; - } - } - catch (Exception exception) + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.EnterpriseToEnterprise: + this.FilterE2EMappings(); + break; + case ASRParameterSets.EnterpriseToAzure: + this.FilterE2AMappings(); + break; + case ASRParameterSets.Default: + WriteNetworkMappings(networkMappingsListResponse.NetworkMappingsList); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/NewAzureRMSiteRecoveryNetworkMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/NewAzureRMSiteRecoveryNetworkMapping.cs index 40ffaf1e6ce2..f61df5a41732 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/NewAzureRMSiteRecoveryNetworkMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/NewAzureRMSiteRecoveryNetworkMapping.cs @@ -55,23 +55,18 @@ public class NewAzureRMSiteRecoveryNetworkMapping : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.EnterpriseToEnterprise: - this.EnterpriseToEnterpriseNetworkMapping(); - break; - case ASRParameterSets.EnterpriseToAzure: - this.EnterpriseToAzureNetworkMapping(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.EnterpriseToEnterprise: + this.EnterpriseToEnterpriseNetworkMapping(); + break; + case ASRParameterSets.EnterpriseToAzure: + this.EnterpriseToAzureNetworkMapping(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/RemoveAzureRMSiteRecoveryNetworkMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/RemoveAzureRMSiteRecoveryNetworkMapping.cs index 161b1758d0ba..bdc90a5a8ef9 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/RemoveAzureRMSiteRecoveryNetworkMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/RemoveAzureRMSiteRecoveryNetworkMapping.cs @@ -39,27 +39,22 @@ public class RemoveAzureRMSiteRecoveryNetworkMapping : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - LongRunningOperationResponse response = - RecoveryServicesClient - .RemoveAzureSiteRecoveryNetworkMapping( - Utilities.GetValueFromArmId(this.NetworkMapping.ID, ARMResourceTypeConstants.ReplicationFabrics), - Utilities.GetValueFromArmId(this.NetworkMapping.ID, "replicationNetworks"), - Utilities.GetValueFromArmId(this.NetworkMapping.ID, "replicationNetworkMappings")); + base.ExecuteSiteRecoveryCmdlet(); - JobResponse jobResponse = - RecoveryServicesClient - .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + LongRunningOperationResponse response = + RecoveryServicesClient + .RemoveAzureSiteRecoveryNetworkMapping( + Utilities.GetValueFromArmId(this.NetworkMapping.ID, ARMResourceTypeConstants.ReplicationFabrics), + Utilities.GetValueFromArmId(this.NetworkMapping.ID, "replicationNetworks"), + Utilities.GetValueFromArmId(this.NetworkMapping.ID, "replicationNetworkMappings")); - WriteObject(new ASRJob(jobResponse.Job)); - } - catch (Exception exception) - { - this.HandleException(exception); - } + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs index 552d1f00971d..9e12d21a194c 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs @@ -47,26 +47,21 @@ public class GetAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByFriendlyName: - this.GetByFriendlyName(); - break; - case ASRParameterSets.ByName: - this.GetByName(); - break; - case ASRParameterSets.Default: - this.GetAll(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByFriendlyName: + this.GetByFriendlyName(); + break; + case ASRParameterSets.ByName: + this.GetByName(); + break; + case ASRParameterSets.Default: + this.GetAll(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs index d7d032124a4d..82f52da68faf 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs @@ -152,24 +152,18 @@ public class NewAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.EnterpriseToEnterprise: - this.EnterpriseToEnterprisePolicyObject(); - break; - case ASRParameterSets.EnterpriseToAzure: - this.EnterpriseToAzurePolicyObject(); - break; - } + base.ExecuteSiteRecoveryCmdlet(); - } - catch (Exception exception) + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.EnterpriseToEnterprise: + this.EnterpriseToEnterprisePolicyObject(); + break; + case ASRParameterSets.EnterpriseToAzure: + this.EnterpriseToAzurePolicyObject(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs index 8dbb0a65313d..6226394c39c9 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs @@ -40,22 +40,17 @@ public class RemoveAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - LongRunningOperationResponse responseBlue = RecoveryServicesClient.DeletePolicy(this.Policy.Name); + base.ExecuteSiteRecoveryCmdlet(); + + LongRunningOperationResponse responseBlue = RecoveryServicesClient.DeletePolicy(this.Policy.Name); - JobResponse jobResponseBlue = - RecoveryServicesClient - .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(responseBlue.Location)); + JobResponse jobResponseBlue = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(responseBlue.Location)); - WriteObject(new ASRJob(jobResponseBlue.Job)); - } - catch (Exception exception) - { - this.HandleException(exception); - } + WriteObject(new ASRJob(jobResponseBlue.Job)); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs index d67141cbb146..4f0b9d4ab578 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs @@ -58,23 +58,18 @@ public class StartAzureSiteRecoveryPolicyAssociationJob : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.EnterpriseToAzure: - this.EnterpriseToAzureAssociation(); - break; - case ASRParameterSets.EnterpriseToEnterprise: - this.EnterpriseToEnterpriseAssociation(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.EnterpriseToAzure: + this.EnterpriseToAzureAssociation(); + break; + case ASRParameterSets.EnterpriseToEnterprise: + this.EnterpriseToEnterpriseAssociation(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs index ed352b45fb8f..019707704bba 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs @@ -58,23 +58,18 @@ public class StartAzureSiteRecoveryPolicyDissociationJob : SiteRecoveryCmdletBas /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.EnterpriseToAzure: - this.EnterpriseToAzureDissociation(); - break; - case ASRParameterSets.EnterpriseToEnterprise: - this.EnterpriseToEnterpriseDissociation(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.EnterpriseToAzure: + this.EnterpriseToAzureDissociation(); + break; + case ASRParameterSets.EnterpriseToEnterprise: + this.EnterpriseToEnterpriseDissociation(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs index bcf55ac77c21..3f0d2f95fcec 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs @@ -48,26 +48,21 @@ public class GetAzureSiteRecoveryProtectionContainer : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByObjectWithName: - this.GetByName(); - break; - case ASRParameterSets.ByObjectWithFriendlyName: - this.GetByFriendlyName(); - break; - default: - this.GetAll(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByObjectWithName: + this.GetByName(); + break; + case ASRParameterSets.ByObjectWithFriendlyName: + this.GetByFriendlyName(); + break; + default: + this.GetAll(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs index bf47e4477cc2..c6aafd76a1ed 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs @@ -56,26 +56,21 @@ public class GetAzureSiteRecoveryProtectionEntity : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByObject: - this.GetAll(); - break; - case ASRParameterSets.ByObjectWithName: - this.GetByName(); - break; - case ASRParameterSets.ByObjectWithFriendlyName: - this.GetByFriendlyName(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByObject: + this.GetAll(); + break; + case ASRParameterSets.ByObjectWithName: + this.GetByName(); + break; + case ASRParameterSets.ByObjectWithFriendlyName: + this.GetByFriendlyName(); + break; } } @@ -92,7 +87,7 @@ private void GetByFriendlyName() ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => t.Properties.FriendlyName.CompareTo(this.FriendlyName) == 0); if (protectableItem != null) - { + { WriteProtectionEntity(protectableItem); found = true; } @@ -116,15 +111,15 @@ private void GetByName() ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionContainer.Name, + this.ProtectionContainer.Name, this.Name); - + if (protectableItemResponse.ProtectableItem != null) { WriteProtectionEntity(protectableItemResponse.ProtectableItem); found = true; - } - + } + if (!found) { throw new InvalidOperationException( @@ -143,7 +138,7 @@ private void GetAll() ProtectableItemListResponse protectableItemListResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), this.ProtectionContainer.Name); - + WriteProtectionEntities(protectableItemListResponse.ProtectableItems); } @@ -162,7 +157,7 @@ private void WriteProtectionEntities(IList protectableItems) replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), this.ProtectionContainer.Name, - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); } if (replicationProtectedItemResponse != null && replicationProtectedItemResponse.ReplicationProtectedItem != null) @@ -191,7 +186,7 @@ private void WriteProtectionEntity(ProtectableItem protectableItem) replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), this.ProtectionContainer.Name, - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); } if (replicationProtectedItemResponse != null && replicationProtectedItemResponse.ReplicationProtectedItem != null) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs index d285606d33d3..98d2832bb41b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs @@ -115,8 +115,10 @@ public class SetAzureSiteRecoveryProtectionEntity : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { + base.ExecuteSiteRecoveryCmdlet(); + this.targetNameOrId = this.ProtectionEntity.FriendlyName; this.ConfirmAction( this.Force.IsPresent || 0 != string.CompareOrdinal(this.Protection, Constants.DisableProtection), @@ -125,140 +127,133 @@ public override void ExecuteCmdlet() this.targetNameOrId, () => { - try + if (this.Protection == Constants.EnableProtection) { - if (this.Protection == Constants.EnableProtection) + if (string.Compare(this.ParameterSetName, ASRParameterSets.DisableDR, StringComparison.OrdinalIgnoreCase) == 0) { - if (string.Compare(this.ParameterSetName, ASRParameterSets.DisableDR, StringComparison.OrdinalIgnoreCase) == 0) - { - throw new PSArgumentException(Properties.Resources.PassingPolicyMandatoryForEnablingDR); - } + throw new PSArgumentException(Properties.Resources.PassingPolicyMandatoryForEnablingDR); + } + + EnableProtectionProviderSpecificInput enableProtectionProviderSpecificInput = new EnableProtectionProviderSpecificInput(); + + EnableProtectionInputProperties inputProperties = new EnableProtectionInputProperties() + { + PolicyId = this.Policy.ID, + ProtectableItemId = this.ProtectionEntity.ID, + ProviderSpecificDetails = enableProtectionProviderSpecificInput + }; + + EnableProtectionInput input = new EnableProtectionInput() + { + Properties = inputProperties + }; - EnableProtectionProviderSpecificInput enableProtectionProviderSpecificInput = new EnableProtectionProviderSpecificInput(); + // Process if block only if policy is not null, policy is created for E2A or B2A and parameter set is for enable DR of E2A or B2A + if (this.Policy != null && + 0 == string.Compare(this.Policy.ReplicationProvider, Constants.HyperVReplicaAzure, StringComparison.OrdinalIgnoreCase) && + (0 == string.Compare(this.ParameterSetName, ASRParameterSets.EnterpriseToAzure, StringComparison.OrdinalIgnoreCase) || + 0 == string.Compare(this.ParameterSetName, ASRParameterSets.HyperVSiteToAzure, StringComparison.OrdinalIgnoreCase))) + { + HyperVReplicaAzureEnableProtectionInput providerSettings = new HyperVReplicaAzureEnableProtectionInput(); + providerSettings.HvHostVmId = this.ProtectionEntity.FabricObjectId; + providerSettings.VmName = this.ProtectionEntity.FriendlyName; - EnableProtectionInputProperties inputProperties = new EnableProtectionInputProperties() + // Id disk details are missing in input PE object, get the latest PE. + if (string.IsNullOrEmpty(this.ProtectionEntity.OS)) { - PolicyId = this.Policy.ID, - ProtectableItemId = this.ProtectionEntity.ID, - ProviderSpecificDetails = enableProtectionProviderSpecificInput - }; + // Just checked for OS to see whether the disk details got filled up or not + ProtectableItemResponse protectableItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( + Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), + this.ProtectionEntity.ProtectionContainerId, + this.ProtectionEntity.Name); + + this.ProtectionEntity = new ASRProtectionEntity(protectableItemResponse.ProtectableItem); + } - EnableProtectionInput input = new EnableProtectionInput() + if (string.IsNullOrWhiteSpace(this.OS)) { - Properties = inputProperties - }; - - // Process if block only if policy is not null, policy is created for E2A or B2A and parameter set is for enable DR of E2A or B2A - if (this.Policy != null && - 0 == string.Compare(this.Policy.ReplicationProvider, Constants.HyperVReplicaAzure, StringComparison.OrdinalIgnoreCase) && - (0 == string.Compare(this.ParameterSetName, ASRParameterSets.EnterpriseToAzure, StringComparison.OrdinalIgnoreCase) || - 0 == string.Compare(this.ParameterSetName, ASRParameterSets.HyperVSiteToAzure, StringComparison.OrdinalIgnoreCase))) + providerSettings.OSType = ((string.Compare(this.ProtectionEntity.OS, Constants.OSWindows) == 0) || (string.Compare(this.ProtectionEntity.OS, Constants.OSLinux) == 0)) ? this.ProtectionEntity.OS : Constants.OSWindows; + } + else { - HyperVReplicaAzureEnableProtectionInput providerSettings = new HyperVReplicaAzureEnableProtectionInput(); - providerSettings.HvHostVmId = this.ProtectionEntity.FabricObjectId; - providerSettings.VmName = this.ProtectionEntity.FriendlyName; - - // Id disk details are missing in input PE object, get the latest PE. - if (string.IsNullOrEmpty(this.ProtectionEntity.OS)) - { - // Just checked for OS to see whether the disk details got filled up or not - ProtectableItemResponse protectableItemResponse = - RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( - Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionEntity.ProtectionContainerId, - this.ProtectionEntity.Name); - - this.ProtectionEntity = new ASRProtectionEntity(protectableItemResponse.ProtectableItem); - } + providerSettings.OSType = this.OS; + } - if (string.IsNullOrWhiteSpace(this.OS)) - { - providerSettings.OSType = ((string.Compare(this.ProtectionEntity.OS, Constants.OSWindows) == 0) || (string.Compare(this.ProtectionEntity.OS, Constants.OSLinux) == 0)) ? this.ProtectionEntity.OS : Constants.OSWindows; - } - else - { - providerSettings.OSType = this.OS; - } - - if (string.IsNullOrWhiteSpace(this.OSDiskName)) - { - providerSettings.VhdId = this.ProtectionEntity.OSDiskId; - } - else + if (string.IsNullOrWhiteSpace(this.OSDiskName)) + { + providerSettings.VhdId = this.ProtectionEntity.OSDiskId; + } + else + { + foreach (var disk in this.ProtectionEntity.Disks) { - foreach (var disk in this.ProtectionEntity.Disks) + if (0 == string.Compare(disk.Name, this.OSDiskName, true)) { - if (0 == string.Compare(disk.Name, this.OSDiskName, true)) - { - providerSettings.VhdId = disk.Id; - break; - } + providerSettings.VhdId = disk.Id; + break; } } - - if (RecoveryAzureStorageAccountId != null) - { - providerSettings.TargetStorageAccountId = RecoveryAzureStorageAccountId; - } - - input.Properties.ProviderSpecificDetails = providerSettings; } - else if (this.Policy != null && - 0 == string.Compare(this.Policy.ReplicationProvider, Constants.HyperVReplicaAzure, StringComparison.OrdinalIgnoreCase) && - 0 == string.Compare(this.ParameterSetName, ASRParameterSets.EnterpriseToEnterprise, StringComparison.OrdinalIgnoreCase)) + + if (RecoveryAzureStorageAccountId != null) { - throw new PSArgumentException(Properties.Resources.PassingStorageMandatoryForEnablingDRInAzureScenarios); + providerSettings.TargetStorageAccountId = RecoveryAzureStorageAccountId; } - this.response = - RecoveryServicesClient.EnableProtection( - Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), - Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), - this.ProtectionEntity.Name, - input); + input.Properties.ProviderSpecificDetails = providerSettings; } - else + else if (this.Policy != null && + 0 == string.Compare(this.Policy.ReplicationProvider, Constants.HyperVReplicaAzure, StringComparison.OrdinalIgnoreCase) && + 0 == string.Compare(this.ParameterSetName, ASRParameterSets.EnterpriseToEnterprise, StringComparison.OrdinalIgnoreCase)) { - DisableProtectionInput input = new DisableProtectionInput(); - input.Properties = new DisableProtectionInputProperties() - { - ProviderSettings = new DisableProtectionProviderSpecificInput() - }; - - // fetch the latest PE object - ProtectableItemResponse protectableItemResponse = - RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionEntity.ProtectionContainerId, this.ProtectionEntity.Name); - ProtectableItem protectableItem = protectableItemResponse.ProtectableItem; - - this.response = - RecoveryServicesClient.DisableProtection( - Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), - Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems), - input); + throw new PSArgumentException(Properties.Resources.PassingStorageMandatoryForEnablingDRInAzureScenarios); } - jobResponse = - RecoveryServicesClient - .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); - - WriteObject(new ASRJob(jobResponse.Job)); - - if (this.WaitForCompletion.IsPresent) + this.response = + RecoveryServicesClient.EnableProtection( + Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), + Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), + this.ProtectionEntity.Name, + input); + } + else + { + DisableProtectionInput input = new DisableProtectionInput(); + input.Properties = new DisableProtectionInputProperties() { - this.WaitForJobCompletion(this.jobResponse.Job.Name); + ProviderSettings = new DisableProtectionProviderSpecificInput() + }; - jobResponse = - RecoveryServicesClient - .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + // fetch the latest PE object + ProtectableItemResponse protectableItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), + this.ProtectionEntity.ProtectionContainerId, this.ProtectionEntity.Name); + ProtectableItem protectableItem = protectableItemResponse.ProtectableItem; - WriteObject(new ASRJob(jobResponse.Job)); - } + this.response = + RecoveryServicesClient.DisableProtection( + Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), + Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), + Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems), + input); } - catch (Exception exception) + + jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + + if (this.WaitForCompletion.IsPresent) { - this.HandleException(exception); + this.WaitForJobCompletion(this.jobResponse.Job.Name); + + jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); } }); } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryCommitFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryCommitFailoverJob.cs index d308bb5ffa62..a9986bead5dd 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryCommitFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryCommitFailoverJob.cs @@ -64,23 +64,18 @@ public class StartAzureSiteRecoveryCommitFailoverJob : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByPEObject: - this.protectionEntityName = this.ProtectionEntity.Name; - this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; - this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); - this.SetPECommit(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByPEObject: + this.protectionEntityName = this.ProtectionEntity.Name; + this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; + this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); + this.SetPECommit(); + break; } } @@ -96,16 +91,16 @@ private void SetPECommit() ReplicationProtectedItemResponse replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(this.fabricName, - this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); - PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); + PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); this.ProtectionEntity = new ASRProtectionEntity(protectableItemResponse.ProtectableItem, replicationProtectedItemResponse.ReplicationProtectedItem); LongRunningOperationResponse response = RecoveryServicesClient.StartAzureSiteRecoveryCommitFailover( this.fabricName, this.protectionContainerName, - Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems)); + Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems)); JobResponse jobResponse = RecoveryServicesClient diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs index 66bbc67ff6d4..de9b5eab555e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs @@ -73,23 +73,18 @@ public class StartAzureSiteRecoveryPlannedFailoverJob : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByPEObject: - this.protectionEntityName = this.ProtectionEntity.Name; - this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; - this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); - this.StartPEPlannedFailover(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByPEObject: + this.protectionEntityName = this.ProtectionEntity.Name; + this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; + this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); + this.StartPEPlannedFailover(); + break; } } @@ -116,13 +111,13 @@ private void StartPEPlannedFailover() ReplicationProtectedItemResponse replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(this.fabricName, - this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); - PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); + PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); this.ProtectionEntity = new ASRProtectionEntity(protectableItemResponse.ProtectableItem, replicationProtectedItemResponse.ReplicationProtectedItem); - + if (0 == string.Compare( this.ProtectionEntity.ReplicationProvider, Constants.HyperVReplicaAzure, @@ -142,7 +137,7 @@ private void StartPEPlannedFailover() { HyperVReplicaAzureFailbackProviderInput failbackInput = new HyperVReplicaAzureFailbackProviderInput() { - DataSyncOption = this.Optimize == Constants.ForDowntime ? Constants.ForDowntime : Constants.ForSynchronization, + DataSyncOption = this.Optimize == Constants.ForDowntime ? Constants.ForDowntime : Constants.ForSynchronization, //ProviderIdForAlternateRecovery = "", RecoveryVmCreationOption = "CreateVmIfNotFound" //CreateVmIfNotFound | NoAction }; @@ -154,7 +149,7 @@ private void StartPEPlannedFailover() RecoveryServicesClient.StartAzureSiteRecoveryPlannedFailover( this.fabricName, this.protectionContainerName, - Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems), + Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems), input); JobResponse jobResponse = diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs index 670e34c0fba7..3141106bb488 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs @@ -96,40 +96,34 @@ public class StartAzureSiteRecoveryTestFailoverJob : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch(this.ParameterSetName) - { - case ASRParameterSets.ByPEObjectWithVMNetwork: - this.networkType = "VmNetworkAsInput"; - this.networkId = this.VMNetwork.ID; - break; - //case ASRParameterSets.ByPEObjectWithLogicalVMNetwork: - // this.networkType = "LogicalNetworkAsInput"; - // this.networkId = this.LogicalVMNetwork.ID; - // break; - case ASRParameterSets.ByPEObjectWithAzureVMNetworkId: - this.networkType = "VmNetworkAsInput"; - this.networkId = this.AzureVMNetworkId; - break; - case ASRParameterSets.ByPEObject: - this.networkType = "NoNetworkAttachAsInput"; - this.networkId = null; - break; - } + base.ExecuteSiteRecoveryCmdlet(); - this.protectionEntityName = this.ProtectionEntity.Name; - this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; - this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); - this.StartPETestFailover(); - } - - catch (Exception exception) + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByPEObjectWithVMNetwork: + this.networkType = "VmNetworkAsInput"; + this.networkId = this.VMNetwork.ID; + break; + //case ASRParameterSets.ByPEObjectWithLogicalVMNetwork: + // this.networkType = "LogicalNetworkAsInput"; + // this.networkId = this.LogicalVMNetwork.ID; + // break; + case ASRParameterSets.ByPEObjectWithAzureVMNetworkId: + this.networkType = "VmNetworkAsInput"; + this.networkId = this.AzureVMNetworkId; + break; + case ASRParameterSets.ByPEObject: + this.networkType = "NoNetworkAttachAsInput"; + this.networkId = null; + break; } + + this.protectionEntityName = this.ProtectionEntity.Name; + this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; + this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); + this.StartPETestFailover(); } /// @@ -157,7 +151,7 @@ private void StartPETestFailover() ReplicationProtectedItemResponse replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(this.fabricName, - this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); @@ -188,14 +182,14 @@ private void StartPETestFailover() RecoveryServicesClient.StartAzureSiteRecoveryTestFailover( this.fabricName, this.protectionContainerName, - Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems), + Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems), input); JobResponse jobResponse = RecoveryServicesClient .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); - WriteObject(new ASRJob(jobResponse.Job)); + WriteObject(new ASRJob(jobResponse.Job)); } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs index 7e714666d73b..e2dfc29ddf52 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs @@ -73,23 +73,18 @@ public class StartAzureSiteRecoveryUnplannedFailoverJob : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByPEObject: - this.protectionEntityName = this.ProtectionEntity.Name; - this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; - this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); - this.StartPEUnplannedFailover(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByPEObject: + this.protectionEntityName = this.ProtectionEntity.Name; + this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; + this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); + this.StartPEUnplannedFailover(); + break; } } @@ -117,7 +112,7 @@ private void StartPEUnplannedFailover() ReplicationProtectedItemResponse replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(this.fabricName, - this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); @@ -137,14 +132,14 @@ private void StartPEUnplannedFailover() VaultLocation = this.GetCurrentValutLocation() }; input.Properties.ProviderSpecificDetails = failoverInput; - } + } } LongRunningOperationResponse response = RecoveryServicesClient.StartAzureSiteRecoveryUnplannedFailover( this.fabricName, this.protectionContainerName, - Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems), + Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems), input); JobResponse jobResponse = diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs index 10e18ec958b6..73ceed53ede8 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs @@ -65,20 +65,14 @@ public class UpdateAzureSiteRecoveryProtection : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - this.protectionEntityName = this.ProtectionEntity.Name; - this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; - this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); - this.SetPEReprotect(); - - } - catch (Exception exception) - { - this.HandleException(exception); - } + base.ExecuteSiteRecoveryCmdlet(); + + this.protectionEntityName = this.ProtectionEntity.Name; + this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; + this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); + this.SetPEReprotect(); } /// @@ -104,7 +98,7 @@ private void SetPEReprotect() ReplicationProtectedItemResponse replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(this.fabricName, - this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + this.ProtectionEntity.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); @@ -121,7 +115,7 @@ private void SetPEReprotect() { HvHostVmId = this.ProtectionEntity.FabricObjectId, VmName = this.ProtectionEntity.FriendlyName, - OSType = ( (string.Compare(this.ProtectionEntity.OS, "Windows") == 0) || (string.Compare(this.ProtectionEntity.OS, "Linux") == 0) ) ? this.ProtectionEntity.OS : "Windows", + OSType = ((string.Compare(this.ProtectionEntity.OS, "Windows") == 0) || (string.Compare(this.ProtectionEntity.OS, "Linux") == 0)) ? this.ProtectionEntity.OS : "Windows", VHDId = this.ProtectionEntity.OSDiskId }; @@ -131,21 +125,21 @@ private void SetPEReprotect() reprotectInput.StorageAccountId = providerSpecificDetails.RecoveryAzureStorageAccount; input.Properties.ProviderSpecificDetails = reprotectInput; - } + } } LongRunningOperationResponse response = RecoveryServicesClient.StartAzureSiteRecoveryReprotection( this.fabricName, this.protectionContainerName, - Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems), + Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Id, ARMResourceTypeConstants.ReplicationProtectedItems), input); JobResponse jobResponse = RecoveryServicesClient .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); - WriteObject(new ASRJob(jobResponse.Job)); + WriteObject(new ASRJob(jobResponse.Job)); } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/GetAzureSiteRecoveryServer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/GetAzureSiteRecoveryServer.cs index 4ba6639fe07b..b724ea1a91d3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/GetAzureSiteRecoveryServer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/GetAzureSiteRecoveryServer.cs @@ -47,26 +47,21 @@ public class GetAzureSiteRecoveryServer : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByName: - this.GetByName(); - break; - case ASRParameterSets.ByFriendlyName: - this.GetByFriendlyName(); - break; - case ASRParameterSets.Default: - this.GetAll(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByName: + this.GetByName(); + break; + case ASRParameterSets.ByFriendlyName: + this.GetByFriendlyName(); + break; + case ASRParameterSets.Default: + this.GetAll(); + break; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs index 265de0341a04..682604d12632 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs @@ -48,16 +48,10 @@ public class RemoveAzureSiteRecoveryServer : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - RemoveServer(); - } - catch (Exception exception) - { - this.HandleException(exception); - } + base.ExecuteSiteRecoveryCmdlet(); + RemoveServer(); } /// @@ -93,6 +87,6 @@ private void RemoveServer() .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); WriteObject(new ASRJob(jobResponse.Job)); - } + } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/GetAzureSiteRecoverySite.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/GetAzureSiteRecoverySite.cs index 357ceb2f1519..777e4ccaf06f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/GetAzureSiteRecoverySite.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/GetAzureSiteRecoverySite.cs @@ -49,26 +49,21 @@ public class GetAzureSiteRecoverySite : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByName: - this.GetByName(); - break; - case ASRParameterSets.ByFriendlyName: - this.GetByFriendlyName(); - break; - case ASRParameterSets.Default: - this.GetAll(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByName: + this.GetByName(); + break; + case ASRParameterSets.ByFriendlyName: + this.GetByFriendlyName(); + break; + case ASRParameterSets.Default: + this.GetAll(); + break; } } @@ -154,6 +149,6 @@ private void GetAll() private void WriteSite(Fabric fabric) { this.WriteObject(new ASRSite(fabric)); - } + } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/NewAzureSiteRecoverySite.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/NewAzureSiteRecoverySite.cs index 26906b564d05..a8134703c84f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/NewAzureSiteRecoverySite.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/NewAzureSiteRecoverySite.cs @@ -49,23 +49,18 @@ public class NewAzureSiteRecoverySite : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - LongRunningOperationResponse response = - RecoveryServicesClient.CreateAzureSiteRecoveryFabric(this.Name, FabricProviders.HyperVSite); + base.ExecuteSiteRecoveryCmdlet(); - JobResponse jobResponse = - RecoveryServicesClient - .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + LongRunningOperationResponse response = + RecoveryServicesClient.CreateAzureSiteRecoveryFabric(this.Name, FabricProviders.HyperVSite); - WriteObject(new ASRJob(jobResponse.Job)); - } - catch (Exception exception) - { - this.HandleException(exception); - } + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/RemoveAzureSiteRecoverySite.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/RemoveAzureSiteRecoverySite.cs index 0c08e295a2da..866b00a2891e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/RemoveAzureSiteRecoverySite.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/RemoveAzureSiteRecoverySite.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery public class RemoveAzureSiteRecoverySite : SiteRecoveryCmdletBase { #region Parameters - + /// /// Gets or sets the site name /// @@ -42,37 +42,32 @@ public class RemoveAzureSiteRecoverySite : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - RecoveryServicesProviderListResponse recoveryServicesProviderListResponse = - RecoveryServicesClient.GetAzureSiteRecoveryProvider( - this.Site.Name); + base.ExecuteSiteRecoveryCmdlet(); - if (recoveryServicesProviderListResponse.RecoveryServicesProviders.Count != 0) - { - throw new PSInvalidOperationException(Properties.Resources.SiteRemovalWithRegisteredHyperVHostsError); - } + RecoveryServicesProviderListResponse recoveryServicesProviderListResponse = + RecoveryServicesClient.GetAzureSiteRecoveryProvider( + this.Site.Name); - FabricDeletionInput input = new FabricDeletionInput() - { - Properties = new FabricDeletionInputProperties() - }; + if (recoveryServicesProviderListResponse.RecoveryServicesProviders.Count != 0) + { + throw new PSInvalidOperationException(Properties.Resources.SiteRemovalWithRegisteredHyperVHostsError); + } - LongRunningOperationResponse response = - RecoveryServicesClient.DeleteAzureSiteRecoveryFabric(this.Site.Name, input); + FabricDeletionInput input = new FabricDeletionInput() + { + Properties = new FabricDeletionInputProperties() + }; - JobResponse jobResponse = - RecoveryServicesClient - .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + LongRunningOperationResponse response = + RecoveryServicesClient.DeleteAzureSiteRecoveryFabric(this.Site.Name, input); - WriteObject(new ASRJob(jobResponse.Job)); - } - catch (Exception exception) - { - this.HandleException(exception); - } + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs index 429a7fa6edf3..a72ebaa83454 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs @@ -48,8 +48,10 @@ public class GetAzureSiteRecoveryStorageClassification : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { + base.ExecuteSiteRecoveryCmdlet(); + List fabrics = new List(); List storageClassifications = new List(); diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs index 097eb980a3a1..3e048f35d877 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs @@ -27,8 +27,10 @@ public class GetAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdl /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { + base.ExecuteSiteRecoveryCmdlet(); + List mappings = new List(); Task mappingTask = RecoveryServicesClient.EnumerateStorageClassificationMappingsAsync((entities) => diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs index a0d2f5851ce3..6e2ea9ff5bc5 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// Pairs storage classification /// [Cmdlet(VerbsCommon.New, "AzureRmSiteRecoveryStorageClassificationMapping", DefaultParameterSetName = ASRParameterSets.Default)] - [OutputType(typeof(IEnumerable))] + [OutputType(typeof(IEnumerable))] public class NewAzureRmSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdletBase { #region Parameters @@ -46,8 +46,11 @@ public class NewAzureRmSiteRecoveryStorageClassificationMapping : SiteRecoveryCm /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { + base.ExecuteSiteRecoveryCmdlet(); + + throw new Exception("BlahBlahBlah"); string armName = string.Format( "StrgMap_{0}_{1}_{2}", PrimaryStorageClassification.Name, diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs index e92b37924547..fb3a38493fea 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// Pairs storage classification /// [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryStorageClassificationMapping", DefaultParameterSetName = ASRParameterSets.Default)] - [OutputType(typeof(IEnumerable))] + [OutputType(typeof(IEnumerable))] public class RemoveAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdletBase { #region Parameters @@ -41,8 +41,10 @@ public class RemoveAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryC /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { + base.ExecuteSiteRecoveryCmdlet(); + string[] tokens = StorageClassificationMapping.Id.UnFormatArmId( ARMResourceIdPaths.StorageClassificationMappingResourceIdPath); var operationResponse = RecoveryServicesClient.UnmapStorageClassifications( diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs index 14ae08f0fa85..5e04a8d18b13 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs @@ -56,26 +56,21 @@ public class GetAzureSiteRecoveryVM : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - switch (this.ParameterSetName) - { - case ASRParameterSets.ByObject: - this.GetAll(); - break; - case ASRParameterSets.ByObjectWithName: - this.GetByName(); - break; - case ASRParameterSets.ByObjectWithFriendlyName: - this.GetByFriendlyName(); - break; - } - } - catch (Exception exception) + base.ExecuteSiteRecoveryCmdlet(); + + switch (this.ParameterSetName) { - this.HandleException(exception); + case ASRParameterSets.ByObject: + this.GetAll(); + break; + case ASRParameterSets.ByObjectWithName: + this.GetByName(); + break; + case ASRParameterSets.ByObjectWithFriendlyName: + this.GetByFriendlyName(); + break; } } @@ -162,7 +157,7 @@ private void WriteProtectionEntities(IList protectableItems) replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), this.ProtectionContainer.Name, - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); } if (replicationProtectedItemResponse != null && replicationProtectedItemResponse.ReplicationProtectedItem != null) @@ -191,7 +186,7 @@ private void WriteProtectionEntity(ProtectableItem protectableItem) replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), this.ProtectionContainer.Name, - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); } if (replicationProtectedItemResponse != null && replicationProtectedItemResponse.ReplicationProtectedItem != null) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/SetAzureSiteRecoveryVM.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/SetAzureSiteRecoveryVM.cs index 8e513bcc9ba3..e3f257f6f3db 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/SetAzureSiteRecoveryVM.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/SetAzureSiteRecoveryVM.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery [OutputType(typeof(ASRJob))] public class SetAzureSiteRecoveryVM : SiteRecoveryCmdletBase { - #region Parameters + #region Parameters /// /// Gets or sets ID of the Virtual Machine. @@ -94,120 +94,115 @@ public class SetAzureSiteRecoveryVM : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try + base.ExecuteSiteRecoveryCmdlet(); + + ProtectableItemResponse protectableItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationFabrics), + this.VirtualMachine.ProtectionContainerId, this.VirtualMachine.Name); + + if (protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId == null) { - ProtectableItemResponse protectableItemResponse = - RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.VirtualMachine.ProtectionContainerId, this.VirtualMachine.Name); + this.WriteWarning(Properties.Resources.ProtectionIsNotEnabledForVM.ToString()); + return; + } - if(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId == null) - { - this.WriteWarning(Properties.Resources.ProtectionIsNotEnabledForVM.ToString()); - return; - } + ReplicationProtectedItemResponse replicationProtectedItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationFabrics), + this.VirtualMachine.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); - ReplicationProtectedItemResponse replicationProtectedItemResponse = - RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.VirtualMachine.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + // Check for Replication Provider type HyperVReplicaAzure + if (0 != string.Compare( + replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails.InstanceType, + Constants.HyperVReplicaAzure, + StringComparison.OrdinalIgnoreCase)) + { + this.WriteWarning(Properties.Resources.UnsupportedReplicationProvidedForUpdateVmProperties.ToString()); + return; + } - // Check for Replication Provider type HyperVReplicaAzure - if (0 != string.Compare( - replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails.InstanceType, - Constants.HyperVReplicaAzure, - StringComparison.OrdinalIgnoreCase)) - { - this.WriteWarning(Properties.Resources.UnsupportedReplicationProvidedForUpdateVmProperties.ToString()); - return; - } + // Check for at least one option + if (string.IsNullOrEmpty(this.Name) && + string.IsNullOrEmpty(this.Size) && + string.IsNullOrEmpty(this.PrimaryNic) && + string.IsNullOrEmpty(this.RecoveryNetworkId)) + { + this.WriteWarning(Properties.Resources.ArgumentsMissingForUpdateVmProperties.ToString()); + return; + } - // Check for at least one option - if (string.IsNullOrEmpty(this.Name) && - string.IsNullOrEmpty(this.Size) && - string.IsNullOrEmpty(this.PrimaryNic) && - string.IsNullOrEmpty(this.RecoveryNetworkId)) - { - this.WriteWarning(Properties.Resources.ArgumentsMissingForUpdateVmProperties.ToString()); - return; - } + // Both primary & recovery inputs should be present + if (string.IsNullOrEmpty(this.PrimaryNic) ^ + string.IsNullOrEmpty(this.RecoveryNetworkId)) + { + this.WriteWarning(Properties.Resources.NetworkArgumentsMissingForUpdateVmProperties.ToString()); + return; + } + + List vMNicInputDetailsList = new List(); + VMNicDetails vMNicDetailsToBeUpdated; + if (!string.IsNullOrEmpty(this.PrimaryNic)) + { + HyperVReplicaAzureReplicationDetails providerSpecificDetails = + (HyperVReplicaAzureReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails; - // Both primary & recovery inputs should be present - if (string.IsNullOrEmpty(this.PrimaryNic) ^ - string.IsNullOrEmpty(this.RecoveryNetworkId)) + if (providerSpecificDetails.VMNics != null) { - this.WriteWarning(Properties.Resources.NetworkArgumentsMissingForUpdateVmProperties.ToString()); - return; - } + vMNicDetailsToBeUpdated = providerSpecificDetails.VMNics.SingleOrDefault(n => string.Compare(n.NicId, this.PrimaryNic, StringComparison.OrdinalIgnoreCase) == 0); + if (vMNicDetailsToBeUpdated != null) + { + VMNicInputDetails vMNicInputDetails = new VMNicInputDetails(); - List vMNicInputDetailsList = new List(); - VMNicDetails vMNicDetailsToBeUpdated; - if (!string.IsNullOrEmpty(this.PrimaryNic)) - { - HyperVReplicaAzureReplicationDetails providerSpecificDetails = - (HyperVReplicaAzureReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails; + vMNicInputDetails.NicId = this.PrimaryNic; + vMNicInputDetails.RecoveryVMSubnetName = this.RecoveryNicSubnetName; + vMNicInputDetails.ReplicaNicStaticIPAddress = this.RecoveryNicStaticIPAddress; + vMNicInputDetails.SelectionType = string.IsNullOrEmpty(this.NicSelectionType) ? Constants.SelectedByUser : this.NicSelectionType; + vMNicInputDetailsList.Add(vMNicInputDetails); - if (providerSpecificDetails.VMNics != null) - { - vMNicDetailsToBeUpdated = providerSpecificDetails.VMNics.SingleOrDefault(n => string.Compare(n.NicId, this.PrimaryNic, StringComparison.OrdinalIgnoreCase) == 0); - if(vMNicDetailsToBeUpdated != null) + IEnumerable vMNicDetailsListRemaining = providerSpecificDetails.VMNics.Where(n => string.Compare(n.NicId, this.PrimaryNic, StringComparison.OrdinalIgnoreCase) != 0); + foreach (VMNicDetails nDetails in vMNicDetailsListRemaining) { - VMNicInputDetails vMNicInputDetails = new VMNicInputDetails(); + vMNicInputDetails = new VMNicInputDetails(); - vMNicInputDetails.NicId = this.PrimaryNic; - vMNicInputDetails.RecoveryVMSubnetName = this.RecoveryNicSubnetName; - vMNicInputDetails.ReplicaNicStaticIPAddress = this.RecoveryNicStaticIPAddress; - vMNicInputDetails.SelectionType = string.IsNullOrEmpty(this.NicSelectionType) ? Constants.SelectedByUser : this.NicSelectionType; + vMNicInputDetails.NicId = nDetails.NicId; + vMNicInputDetails.RecoveryVMSubnetName = nDetails.RecoveryVMSubnetName; + vMNicInputDetails.ReplicaNicStaticIPAddress = nDetails.ReplicaNicStaticIPAddress; + vMNicInputDetails.SelectionType = nDetails.SelectionType; vMNicInputDetailsList.Add(vMNicInputDetails); - - IEnumerable vMNicDetailsListRemaining = providerSpecificDetails.VMNics.Where(n => string.Compare(n.NicId, this.PrimaryNic, StringComparison.OrdinalIgnoreCase) != 0); - foreach(VMNicDetails nDetails in vMNicDetailsListRemaining) - { - vMNicInputDetails = new VMNicInputDetails(); - - vMNicInputDetails.NicId = nDetails.NicId; - vMNicInputDetails.RecoveryVMSubnetName = nDetails.RecoveryVMSubnetName; - vMNicInputDetails.ReplicaNicStaticIPAddress = nDetails.ReplicaNicStaticIPAddress; - vMNicInputDetails.SelectionType = nDetails.SelectionType; - vMNicInputDetailsList.Add(vMNicInputDetails); - } - } - else - { - throw new PSInvalidOperationException(Properties.Resources.NicNotFoundInVMForUpdateVmProperties); } - } + } + else + { + throw new PSInvalidOperationException(Properties.Resources.NicNotFoundInVMForUpdateVmProperties); + } } + } - UpdateReplicationProtectedItemInputProperties updateReplicationProtectedItemInputProperties = new UpdateReplicationProtectedItemInputProperties() - { - RecoveryAzureVMName = this.Name, - RecoveryAzureVMSize = this.Size, - SelectedRecoveryAzureNetworkId = this.RecoveryNetworkId, - VmNics = vMNicInputDetailsList - }; + UpdateReplicationProtectedItemInputProperties updateReplicationProtectedItemInputProperties = new UpdateReplicationProtectedItemInputProperties() + { + RecoveryAzureVMName = this.Name, + RecoveryAzureVMSize = this.Size, + SelectedRecoveryAzureNetworkId = this.RecoveryNetworkId, + VmNics = vMNicInputDetailsList + }; - UpdateReplicationProtectedItemInput input = new UpdateReplicationProtectedItemInput() - { - Properties = updateReplicationProtectedItemInputProperties - }; + UpdateReplicationProtectedItemInput input = new UpdateReplicationProtectedItemInput() + { + Properties = updateReplicationProtectedItemInputProperties + }; - LongRunningOperationResponse response = RecoveryServicesClient.UpdateVmProperties( - Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationFabrics), - Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), - this.VirtualMachine.Name, - input); + LongRunningOperationResponse response = RecoveryServicesClient.UpdateVmProperties( + Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationFabrics), + Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), + this.VirtualMachine.Name, + input); - JobResponse jobResponse = - RecoveryServicesClient - .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); - WriteObject(new ASRJob(jobResponse.Job)); - } - catch (Exception exception) - { - this.HandleException(exception); - } + WriteObject(new ASRJob(jobResponse.Job)); } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVault.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVault.cs index 8712b1251a4a..6315a8fd433a 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVault.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVault.cs @@ -44,24 +44,17 @@ public class GetAzureSiteRecoveryVaults : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - base.ExecuteCmdlet(); + base.ExecuteSiteRecoveryCmdlet(); - try + if (string.IsNullOrEmpty(this.ResourceGroupName)) { - if (string.IsNullOrEmpty(this.ResourceGroupName)) - { - this.GetVaultsUnderAllResourceGroups(); - } - else - { - this.GetVaultsUnderResourceGroup(); - } + this.GetVaultsUnderAllResourceGroups(); } - catch (Exception exception) + else { - this.HandleException(exception); + this.GetVaultsUnderResourceGroup(); } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVaultSettings.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVaultSettings.cs index fadd33a71c81..cb684fd05b34 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVaultSettings.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVaultSettings.cs @@ -30,8 +30,10 @@ public class GetAzureSiteRecoveryVaultSettings : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { + base.ExecuteSiteRecoveryCmdlet(); + this.WriteObject(new ASRVaultSettings(PSRecoveryServicesClient.asrVaultCreds)); } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVaultSettingsFile.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVaultSettingsFile.cs index c087fefcb017..695cb679ae41 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVaultSettingsFile.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/GetAzureSiteRecoveryVaultSettingsFile.cs @@ -73,8 +73,10 @@ public class GetAzureSiteRecoveryVaultSettingsFile : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { + base.ExecuteSiteRecoveryCmdlet(); + try { this.GetVaultSettingsFile(); @@ -83,8 +85,7 @@ public override void ExecuteCmdlet() { // if an exception is thrown from a task, it will be wrapped in AggregateException // and propagated to the main thread. Just throwing the first exception in the list. - Exception exception = aggregateEx.InnerExceptions.First(); - this.HandleException(exception); + throw aggregateEx.InnerExceptions.First(); } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs index 76a2ae0e4f32..14f5b4777f41 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs @@ -35,9 +35,9 @@ public class ImportAzureSiteRecoveryVaultSettingsFile : SiteRecoveryCmdletBase /// downloaded from Azure site recovery Vault portal and stored locally. /// [Parameter( - Position = 0, - Mandatory = true, - HelpMessage = "AzureSiteRecovery vault settings file path", + Position = 0, + Mandatory = true, + HelpMessage = "AzureSiteRecovery vault settings file path", ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] public string Path { get; set; } @@ -46,8 +46,10 @@ public class ImportAzureSiteRecoveryVaultSettingsFile : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { + base.ExecuteSiteRecoveryCmdlet(); + this.WriteVerbose("Vault Settings File path: " + this.Path); ASRVaultCreds asrVaultCreds = null; @@ -98,20 +100,13 @@ public override void ExecuteCmdlet() asrVaultCreds.ResourceGroupName); } - try - { - Utilities.UpdateCurrentVaultContext(asrVaultCreds); + Utilities.UpdateCurrentVaultContext(asrVaultCreds); - RecoveryServicesClient.ValidateVaultSettings( - asrVaultCreds.ResourceName, - asrVaultCreds.ResourceGroupName); + RecoveryServicesClient.ValidateVaultSettings( + asrVaultCreds.ResourceName, + asrVaultCreds.ResourceGroupName); - this.WriteObject(new ASRVaultSettings(asrVaultCreds)); - } - catch (Exception exception) - { - this.HandleException(exception); - } + this.WriteObject(new ASRVaultSettings(asrVaultCreds)); } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs index 924c652509ca..dcb8cad03a73 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs @@ -54,28 +54,23 @@ public class CreateAzureSiteRecoveryVault : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - this.WriteWarningWithTimestamp( - string.Format( - Properties.Resources.SiteRecoveryVaultTypeWillBeDeprecatedSoon)); + base.ExecuteSiteRecoveryCmdlet(); - VaultCreateArgs vaultCreateArgs = new VaultCreateArgs(); - vaultCreateArgs.Location = this.Location; - vaultCreateArgs.Properties = new VaultProperties(); - vaultCreateArgs.Properties.Sku = new VaultSku(); - vaultCreateArgs.Properties.Sku.Name = "standard"; + this.WriteWarningWithTimestamp( + string.Format( + Properties.Resources.SiteRecoveryVaultTypeWillBeDeprecatedSoon)); - VaultCreateResponse response = RecoveryServicesClient.CreateVault(this.ResourceGroupName, this.Name, vaultCreateArgs); + VaultCreateArgs vaultCreateArgs = new VaultCreateArgs(); + vaultCreateArgs.Location = this.Location; + vaultCreateArgs.Properties = new VaultProperties(); + vaultCreateArgs.Properties.Sku = new VaultSku(); + vaultCreateArgs.Properties.Sku.Name = "standard"; - this.WriteObject(new ASRVault(response)); - } - catch (Exception exception) - { - this.HandleException(exception); - } + VaultCreateResponse response = RecoveryServicesClient.CreateVault(this.ResourceGroupName, this.Name, vaultCreateArgs); + + this.WriteObject(new ASRVault(response)); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/RemoveAzureSiteRecoveryVault.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/RemoveAzureSiteRecoveryVault.cs index c669b9932b2b..b224082d6c79 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/RemoveAzureSiteRecoveryVault.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/RemoveAzureSiteRecoveryVault.cs @@ -40,23 +40,18 @@ public class RemoveAzureSiteRecoveryVault : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - RecoveryServicesOperationStatusResponse response = RecoveryServicesClient.DeleteVault(this.Vault.ResouceGroupName, this.Vault.Name); + base.ExecuteSiteRecoveryCmdlet(); - VaultOperationOutput output = new VaultOperationOutput() - { - Response = response.StatusCode == HttpStatusCode.OK ? Resources.VaultDeletionSuccessMessage : response.StatusCode.ToString() - }; + RecoveryServicesOperationStatusResponse response = RecoveryServicesClient.DeleteVault(this.Vault.ResouceGroupName, this.Vault.Name); - this.WriteObject(output, true); - } - catch (Exception exception) + VaultOperationOutput output = new VaultOperationOutput() { - this.HandleException(exception); - } + Response = response.StatusCode == HttpStatusCode.OK ? Resources.VaultDeletionSuccessMessage : response.StatusCode.ToString() + }; + + this.WriteObject(output, true); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs index d980f1ce05e9..ad4ff498dc0b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs @@ -42,8 +42,10 @@ public class SetAzureSiteRecoveryVaultSettings : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { + base.ExecuteSiteRecoveryCmdlet(); + // Validate the Vault RecoveryServicesClient.ValidateVaultSettings( this.Vault.Name, From f0d83f48ca966d5227252ef3bae78d6456f1c41f Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Wed, 20 Jan 2016 20:51:45 +0530 Subject: [PATCH 09/46] Merging changes. --- .../Common/SiteRecoveryCmdletBase.cs | 2 +- .../Server/RefreshAzureSiteRecoveryServer.cs | 12 +++--------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs index a18c420b247c..709ed79b9c42 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs @@ -70,7 +70,7 @@ public virtual void ExecuteSiteRecoveryCmdlet() } /// - /// + /// Overriding base implementation go execute cmdlet. /// public override void ExecuteCmdlet() { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs index 2add68fceb39..0933577aa8b7 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs @@ -38,16 +38,10 @@ public class UpdateAzureRmSiteRecoveryServer : SiteRecoveryCmdletBase /// /// ProcessRecord of the command. /// - public override void ExecuteCmdlet() + public override void ExecuteSiteRecoveryCmdlet() { - try - { - RefreshServer(); - } - catch (Exception exception) - { - this.HandleException(exception); - } + base.ExecuteSiteRecoveryCmdlet(); + RefreshServer(); } /// From 5d4866f6ccf08c3f6030380a57821c9c543db670 Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Thu, 21 Jan 2016 12:06:20 +0530 Subject: [PATCH 10/46] Taking CR comments. --- .../NewAzureRmSiteRecoveryStorageClassificationMapping.cs | 1 - .../RemoveAzureSiteRecoveryStorageClassificationMapping.cs | 7 ++----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs index 6e2ea9ff5bc5..21ed6a2e040d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs @@ -50,7 +50,6 @@ public override void ExecuteSiteRecoveryCmdlet() { base.ExecuteSiteRecoveryCmdlet(); - throw new Exception("BlahBlahBlah"); string armName = string.Format( "StrgMap_{0}_{1}_{2}", PrimaryStorageClassification.Name, diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs index fb3a38493fea..2be273c04bf2 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs @@ -12,11 +12,8 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; -using System.Threading.Tasks; using Microsoft.Azure.Management.SiteRecovery.Models; namespace Microsoft.Azure.Commands.SiteRecovery @@ -24,7 +21,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery // /// Pairs storage classification /// - [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryStorageClassificationMapping", DefaultParameterSetName = ASRParameterSets.Default)] + [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryStorageClassificationMapping")] [OutputType(typeof(IEnumerable))] public class RemoveAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdletBase { @@ -33,7 +30,7 @@ public class RemoveAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryC /// /// Gets or sets primary storage classification. /// - [Parameter(ParameterSetName = ASRParameterSets.ByObject, Mandatory = true, ValueFromPipeline = true)] + [Parameter(Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ASRStorageClassificationMapping StorageClassificationMapping { get; set; } #endregion From 0b17685f803929829fd8cd8c62233bb791487d25 Mon Sep 17 00:00:00 2001 From: sriramvu Date: Thu, 21 Jan 2016 12:51:29 +0530 Subject: [PATCH 11/46] Sets SiteRecovery and RecoveryServices Vault context without importing file --- .../Commands.SiteRecovery.csproj | 4 + .../Models/PSParameterSets.cs | 10 +++ ...mportAzureSiteRecoveryVaultSettingsFile.cs | 36 ++++++++- .../SetAzureSiteRecoveryVaultSettings.cs | 74 +++++++++++++++++-- .../SiteRecovery/SiteRecovery.sln | 6 ++ 5 files changed, 118 insertions(+), 12 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index ee8160f59e64..b47deeccd307 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -208,6 +208,10 @@ {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} Commands.ResourceManager.Common + + {604260dc-b392-4cf4-81ec-34b14591e2d2} + Commands.RecoveryServices + \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSParameterSets.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSParameterSets.cs index 0f9cfe2da2b7..3b3d700db69f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSParameterSets.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSParameterSets.cs @@ -233,5 +233,15 @@ internal static class ASRParameterSets /// For Disable replication group parameter set. /// internal const string DisableReplicationGroup = "DisableReplicationGroup"; + + /// + /// Handle ASR Vault. + /// + internal const string ASRVault = "AzureSiteRecoveryVault"; + + /// + /// Handle ARS Vault. + /// + internal const string ARSVault = "AzureRecoveryServicesVault"; } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs index 76a2ae0e4f32..9e5362186ce1 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs @@ -51,18 +51,20 @@ public override void ExecuteCmdlet() this.WriteVerbose("Vault Settings File path: " + this.Path); ASRVaultCreds asrVaultCreds = null; + ARSVaultCreds arsVaultCreds = null; + if (File.Exists(this.Path)) { try { - var serializer = new DataContractSerializer(typeof(ASRVaultCreds)); + var serializer = new DataContractSerializer(typeof(ARSVaultCreds)); using (var s = new FileStream( this.Path, FileMode.Open, FileAccess.Read, FileShare.Read)) { - asrVaultCreds = (ASRVaultCreds)serializer.ReadObject(s); + arsVaultCreds = (ARSVaultCreds)serializer.ReadObject(s); } } catch (XmlException xmlException) @@ -72,8 +74,34 @@ public override void ExecuteCmdlet() } catch (SerializationException serializationException) { - throw new SerializationException( - string.Format(Properties.Resources.InvalidXml, serializationException)); + try + { + // moved here as ASR Vault is short lived + var serializer = new DataContractSerializer(typeof(ASRVaultCreds)); + using (var s = new FileStream( + this.Path, + FileMode.Open, + FileAccess.Read, + FileShare.Read)) + { + asrVaultCreds = (ASRVaultCreds)serializer.ReadObject(s); + } + } + catch + { + throw new SerializationException( + string.Format(Properties.Resources.InvalidXml, serializationException)); + } + } + if (null == asrVaultCreds) + { + // Copy ars to asr + asrVaultCreds = new ASRVaultCreds(); + asrVaultCreds.ResourceName = arsVaultCreds.ResourceName; + asrVaultCreds.ResourceGroupName = arsVaultCreds.ResourceGroupName; + asrVaultCreds.ResourceNamespace = arsVaultCreds.ResourceNamespace; + asrVaultCreds.ARMResourceType = arsVaultCreds.ARMResourceType; + asrVaultCreds.ChannelIntegrityKey = arsVaultCreds.ChannelIntegrityKey; } } else diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs index d980f1ce05e9..4e3402d038b9 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs @@ -18,6 +18,9 @@ using System.Management.Automation; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; +using Microsoft.Azure.Commands.RecoveryServices; +using System.Diagnostics; +using System.Collections.ObjectModel; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -31,11 +34,18 @@ public class SetAzureSiteRecoveryVaultSettings : SiteRecoveryCmdletBase #region Parameters /// - /// Gets or sets vault Object. + /// Gets or sets ASR vault Object. /// - [Parameter(Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.ASRVault, Mandatory = true)] [ValidateNotNullOrEmpty] - public ASRVault Vault { get; set; } + public ASRVault ASRVault { get; set; } + + /// + /// Gets or sets ARS vault Object. + /// + [Parameter(ParameterSetName = ASRParameterSets.ARSVault, Mandatory = true)] + [ValidateNotNullOrEmpty] + public ARSVault ARSVault { get; set; } #endregion Parameters @@ -44,15 +54,63 @@ public class SetAzureSiteRecoveryVaultSettings : SiteRecoveryCmdletBase /// public override void ExecuteCmdlet() { - // Validate the Vault - RecoveryServicesClient.ValidateVaultSettings( - this.Vault.Name, - this.Vault.ResouceGroupName); + switch (this.ParameterSetName) + { + case ASRParameterSets.ASRVault: + this.setASRVaultContext(this.ASRVault); + break; + case ASRParameterSets.ARSVault: + this.setARSVaultContext(this.ARSVault); + break; + } + } + /// + /// Set Azure Site Recovery Vault context. + /// + private void setASRVaultContext(ASRVault asrVault) + { // Change the vault context - ASRVaultCreds vaultCreds = RecoveryServicesClient.ChangeVaultContext(this.Vault); + RecoveryServicesClient.ChangeVaultContext(asrVault); + + // Validate the Vault + RecoveryServicesClient.ValidateVaultSettings( + asrVault.Name, + asrVault.ResouceGroupName); this.WriteObject(new ASRVaultSettings(PSRecoveryServicesClient.asrVaultCreds)); } + + /// + /// Set Azure Recovery Services Vault context. + /// + private void setARSVaultContext(ARSVault arsVault) + { + try + { + using (System.Management.Automation.PowerShell powerShell = System.Management.Automation.PowerShell.Create()) + { + Collection result = + powerShell + .AddCommand("Get-AzureRmRecoveryServicesVaultSettingsFile") + .AddParameter("Vault", arsVault) + .Invoke(); + + string vaultSettingspath = (string)result[0].Members["FilePath"].Value; + powerShell.Commands.Clear(); + + result = + powerShell + .AddCommand("Import-AzureRmSiteRecoveryVaultSettingsFile") + .AddParameter("Path", vaultSettingspath) + .Invoke(); + WriteObject(result); + powerShell.Commands.Clear(); + } + } + catch (InvalidOperationException e) + { + } + } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/SiteRecovery.sln b/src/ResourceManager/SiteRecovery/SiteRecovery.sln index 0df8099f8ff5..5f53822bea56 100644 --- a/src/ResourceManager/SiteRecovery/SiteRecovery.sln +++ b/src/ResourceManager/SiteRecovery/SiteRecovery.sln @@ -21,6 +21,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{5BA788 .nuget\packages.config = .nuget\packages.config EndProjectSection EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RecoveryServices", "..\RecoveryServices\Commands.RecoveryServices\Commands.RecoveryServices.csproj", "{604260DC-B392-4CF4-81EC-34B14591E2D2}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -51,6 +53,10 @@ Global {5EE72C53-1720-4309-B54B-5FB79703195F}.Debug|Any CPU.Build.0 = Debug|Any CPU {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.ActiveCfg = Release|Any CPU {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.Build.0 = Release|Any CPU + {604260DC-B392-4CF4-81EC-34B14591E2D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {604260DC-B392-4CF4-81EC-34B14591E2D2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {604260DC-B392-4CF4-81EC-34B14591E2D2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {604260DC-B392-4CF4-81EC-34B14591E2D2}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From 018fc3b3e9be8f8a285b9f9100c9e2153e84dee6 Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Thu, 21 Jan 2016 15:08:07 +0530 Subject: [PATCH 12/46] Adding Server based filtering to Get Storage classification --- .../Common/PSSiteRecoveryFabricClient.cs | 19 +++++++++++++++++++ ...tAzureSiteRecoveryStorageClassification.cs | 10 ++++++++++ 2 files changed, 29 insertions(+) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs index 1cfaa5de4b22..d4a9743ad230 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs @@ -109,4 +109,23 @@ public LongRunningOperationResponse DeleteAzureSiteRecoveryFabric(string fabricN this.GetRequestHeaders()); } } + + /// + /// Fabric extensions. + /// + public static class FabricExtensions + { + /// + /// Gets ARM Id of fabric from provider's ARM Id. + /// + /// Provider ARM Id. + /// ARM Id of fabric. + public static string GetFabricId(this ASRServer provider) + { + return provider.ID.GetVaultArmId() + "/" + + string.Format(ARMResourceIdPaths.FabricResourceIdPath, + provider.ID.UnFormatArmId( + ARMResourceIdPaths.RecoveryServicesProviderResourceIdPath)); + } + } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs index a72ebaa83454..a70740021ef8 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs @@ -43,6 +43,12 @@ public class GetAzureSiteRecoveryStorageClassification : SiteRecoveryCmdletBase [Parameter(ParameterSetName = ASRParameterSets.ByFriendlyName, Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public string FriendlyName { get; set; } + + /// + /// Gets or sets friendly name of classification. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByObject, Mandatory = true, ValueFromPipeline = true)] + public ASRServer Server { get; set; } #endregion /// @@ -86,6 +92,10 @@ public override void ExecuteSiteRecoveryCmdlet() StringComparison.InvariantCultureIgnoreCase)) .ToList(); break; + case ASRParameterSets.ByObject: + storageClassifications = storageClassifications.Where(item => + item.GetFabricId().Equals(Server.GetFabricId())).ToList(); + break; } var psObject = storageClassifications.ConvertAll(item => From 485b28edf8e919064e6f0de40ff3ae495beb218b Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Thu, 21 Jan 2016 15:27:11 +0530 Subject: [PATCH 13/46] Removing Fabric friendly name property from storage classification. --- .../Common/PSSiteRecoveryFabricClient.cs | 25 ------------------- .../Commands.SiteRecovery/Models/PSObjects.cs | 5 ---- ...tAzureSiteRecoveryStorageClassification.cs | 13 ---------- 3 files changed, 43 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs index d4a9743ad230..19b386554a3f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs @@ -27,31 +27,6 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// public partial class PSRecoveryServicesClient { - /// - /// Gets all fabrics associated with a vault. - /// - /// Callback to execute on the result. - /// Task object tracking async operation. - public Task EnumerateFabricsAsync(Action> callback) - { - CancellationToken cancellationToken = new CancellationToken(); - - Task backgroundTask = new Task(new Action(() => - { - Task storageTask = - this.GetSiteRecoveryClient().Fabrics.ListAsync( - this.GetRequestHeaders(), - cancellationToken); - - Task.WaitAll(storageTask); - - callback(storageTask.Result.Fabrics); - })); - - backgroundTask.Start(); - return backgroundTask; - } - /// /// Gets Azure Site Recovery Fabrics. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index 84f1eac1610c..db1def92bc67 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -1349,11 +1349,6 @@ public class ASRStorageClassification /// Gets or sets Storage classification friendly name. /// public string FriendlyName { get; set; } - - /// - /// Gets or sets Fabric friendly name. - /// - public string FabricFriendlyName { get; set; } } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs index a70740021ef8..2ec00b7d7990 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs @@ -58,24 +58,14 @@ public override void ExecuteSiteRecoveryCmdlet() { base.ExecuteSiteRecoveryCmdlet(); - List fabrics = new List(); List storageClassifications = new List(); - Task fabricTask = RecoveryServicesClient.EnumerateFabricsAsync((entities) => - { - fabrics.AddRange(entities); - }); - Task storageClassificationTask = RecoveryServicesClient.EnumerateStorageClassificationsAsync((entities) => { storageClassifications.AddRange(entities); }); - Task.WaitAll(fabricTask, storageClassificationTask); - - var fabricMap = fabrics.ToDictionary(item => item.Id, item => item); - switch (this.ParameterSetName) { case ASRParameterSets.ByFriendlyName: @@ -100,11 +90,8 @@ public override void ExecuteSiteRecoveryCmdlet() var psObject = storageClassifications.ConvertAll(item => { - var fabric = fabricMap[item.GetFabricId()]; - return new ASRStorageClassification() { - FabricFriendlyName = fabric.Properties.FriendlyName, FriendlyName = item.Properties.FriendlyName, Id = item.Id, Name = item.Name From 3d7ba2eca633e04f267d31436c691e34b9833094 Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Thu, 21 Jan 2016 16:05:12 +0530 Subject: [PATCH 14/46] Taking CR comments. --- .../GetAzureSiteRecoveryStorageClassification.cs | 4 ++-- .../GetAzureSiteRecoveryStorageClassificationMapping.cs | 2 +- .../NewAzureRmSiteRecoveryStorageClassificationMapping.cs | 4 ++-- .../RemoveAzureSiteRecoveryStorageClassificationMapping.cs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs index 2ec00b7d7990..3e7d37ce4a3e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs @@ -33,14 +33,14 @@ public class GetAzureSiteRecoveryStorageClassification : SiteRecoveryCmdletBase /// /// Gets or sets name of classification. /// - [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true)] [ValidateNotNullOrEmpty] public string Name { get; set; } /// /// Gets or sets friendly name of classification. /// - [Parameter(ParameterSetName = ASRParameterSets.ByFriendlyName, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByFriendlyName, Mandatory = true)] [ValidateNotNullOrEmpty] public string FriendlyName { get; set; } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs index 3e048f35d877..1078709764cf 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs @@ -12,7 +12,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// Retrieves Azure Site Recovery storage classification. /// [Cmdlet(VerbsCommon.Get, "AzureRmSiteRecoveryStorageClassificationMapping", DefaultParameterSetName = ASRParameterSets.Default)] - [OutputType(typeof(IEnumerable))] + [OutputType(typeof(IEnumerable))] public class GetAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdletBase { #region Parameters diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs index 21ed6a2e040d..36218394adfe 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs @@ -22,8 +22,8 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// /// Pairs storage classification /// - [Cmdlet(VerbsCommon.New, "AzureRmSiteRecoveryStorageClassificationMapping", DefaultParameterSetName = ASRParameterSets.Default)] - [OutputType(typeof(IEnumerable))] + [Cmdlet(VerbsCommon.New, "AzureRmSiteRecoveryStorageClassificationMapping")] + [OutputType(typeof(ASRJob))] public class NewAzureRmSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdletBase { #region Parameters diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs index 2be273c04bf2..ece10a49adf5 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/RemoveAzureSiteRecoveryStorageClassificationMapping.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// Pairs storage classification /// [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryStorageClassificationMapping")] - [OutputType(typeof(IEnumerable))] + [OutputType(typeof(ASRJob))] public class RemoveAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdletBase { #region Parameters From 4fa9568be983b513a7bf8968fe15f74a1e7bb5a0 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Fri, 22 Jan 2016 11:22:07 +0530 Subject: [PATCH 15/46] RP support --- .../Commands.RecoveryServices.Test.csproj | 7 +- .../packages.config | 2 +- .../Commands.RecoveryServices.csproj | 6 +- .../Commands.RecoveryServices/packages.config | 2 +- .../Commands.SiteRecovery.Test.csproj | 7 +- .../packages.config | 2 +- .../Commands.SiteRecovery.csproj | 13 +- .../PSSiteRecoveryRecoveryPlanClient.cs | 145 +++++++++++++ .../Models/PSConstants.cs | 30 +++ .../Commands.SiteRecovery/Models/PSObjects.cs | 6 + .../Models/PSParameterSets.cs | 30 +++ .../Models/PSRecoveryPlanObjects.cs | 168 +++++++++++++++ .../Policy/GetAzureSiteRecoveryPolicy.cs | 12 +- .../Policy/RemoveAzureSiteRecoveryPolicy.cs | 2 +- .../Properties/Resources.Designer.cs | 27 +++ .../Properties/Resources.resx | 9 + ...StartAzureSiteRecoveryCommitFailoverJob.cs | 34 ++- ...tartAzureSiteRecoveryPlannedFailoverJob.cs | 74 +++++++ .../StartAzureSiteRecoveryTestFailoverJob.cs | 91 +++++++- ...rtAzureSiteRecoveryUnPlannedFailoverJob.cs | 70 +++++- ...ateAzureSiteRecoveryProtectionDirection.cs | 47 +++- .../EditAzureSiteRecoveryRecoveryPlan.cs | 159 ++++++++++++++ .../GetAzureSiteRecoveryRecoveryPlan.cs | 204 ++++++++++++++++++ .../NewAzureSiteRecoveryRecoveryPlan.cs | 194 +++++++++++++++++ .../RemoveAzureSiteRecoveryRecoveryPlan.cs | 61 ++++++ .../UpdateAzureSiteRecoveryRecoveryPlan.cs | 145 +++++++++++++ .../Commands.SiteRecovery/packages.config | 2 +- 27 files changed, 1504 insertions(+), 45 deletions(-) create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryPlanClient.cs create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj index ca2b10360287..f8e053920cbb 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj @@ -47,9 +47,9 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.2-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll - True + + False + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.6-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll False @@ -135,6 +135,7 @@ + PreserveNewest diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config index e4d9086f65e8..e91a29a06cd3 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj index 183533657d2f..e839511b2075 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj @@ -51,9 +51,9 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.2-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll - True + + False + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.6-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config index cedaa7970eda..4756b34bcdc8 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj index 8b5a7d9d69b2..8b3e1aef0488 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj @@ -47,9 +47,9 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll - True + + False + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.7-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll False @@ -131,6 +131,7 @@ + PreserveNewest diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config index c1a71d1e7331..46bdfed60da3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config @@ -5,7 +5,7 @@ - + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index 04397d238170..35f813cddf15 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -51,9 +51,9 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll - True + + False + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.7-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -120,6 +120,7 @@ + @@ -132,10 +133,16 @@ + + + + + + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryPlanClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryPlanClient.cs new file mode 100644 index 000000000000..fc99344b9ea6 --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryPlanClient.cs @@ -0,0 +1,145 @@ +// ---------------------------------------------------------------------------------- +// +// 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 Microsoft.Azure.Management.SiteRecovery; +using Microsoft.Azure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Recovery services convenience client. + /// + public partial class PSRecoveryServicesClient + { + /// + /// Gets Azure Site Recovery Plans. + /// + /// + public RecoveryPlanListResponse GetAzureSiteRecoveryRecoveryPlan() + { + return this.GetSiteRecoveryClient().RecoveryPlan.List(this.GetRequestHeaders()); + } + + /// + /// Gets Azure Site Recovery Recovery Plan. + /// + /// Recovery Plan Name + /// Job response + public RecoveryPlanResponse GetAzureSiteRecoveryRecoveryPlan(string recoveryPlanName) + { + return this.GetSiteRecoveryClient().RecoveryPlan.Get(recoveryPlanName, this.GetRequestHeaders()); + } + + /// + /// Starts Azure Site Recovery Commit failover. + /// + /// Recovery Plan Name + /// Job response + public LongRunningOperationResponse StartAzureSiteRecoveryCommitFailover(string recoveryPlanName) + { + return this.GetSiteRecoveryClient().RecoveryPlan.BeginCommitFailover(recoveryPlanName, this.GetRequestHeaders()); + } + + /// + /// Reprotect Recovery Plan + /// + /// Recovery Plan Name + /// Job response + public LongRunningOperationResponse UpdateAzureSiteRecoveryProtection(string recoveryPlanName) + { + return this.GetSiteRecoveryClient().RecoveryPlan.BeginReprotect(recoveryPlanName, this.GetRequestHeaders()); + } + + /// + /// Starts Azure Site Recovery Planned failover. + /// + /// Recovery Plan Name + /// Recovery Plan Planned Failover Input + /// Job response + public LongRunningOperationResponse StartAzureSiteRecoveryPlannedFailover(string recoveryPlanName, RecoveryPlanPlannedFailoverInput input) + { + return this.GetSiteRecoveryClient().RecoveryPlan.BeginPlannedFailover( + recoveryPlanName, + input, + this.GetRequestHeaders()); + } + + /// + /// Starts Azure Site Recovery Unplanned failover. + /// + /// Recovery Plan Name + /// Recovery Plan Unplanned Failover Input + /// Job response + public LongRunningOperationResponse StartAzureSiteRecoveryUnplannedFailover(string recoveryPlanName, RecoveryPlanUnplannedFailoverInput input) + { + return this.GetSiteRecoveryClient().RecoveryPlan.BeginUnplannedFailover( + recoveryPlanName, + input, + this.GetRequestHeaders()); + } + + /// + /// Starts Azure Site Recovery test failover. + /// + /// Recovery Plan Name + /// Recovery Plan Test Failover Input + /// Job response + public LongRunningOperationResponse StartAzureSiteRecoveryTestFailover(string recoveryPlanName, RecoveryPlanTestFailoverInput input) + { + return this.GetSiteRecoveryClient().RecoveryPlan.BeginTestFailover( + recoveryPlanName, + input, + this.GetRequestHeaders()); + } + + /// + /// Remove Azure Site Recovery recovery plan. + /// + /// Recovery Plan Name + /// Job response + public LongRunningOperationResponse RemoveAzureSiteRecoveryRecoveryPlan(string recoveryPlanName) + { + return this.GetSiteRecoveryClient().RecoveryPlan.BeginDeleting( + recoveryPlanName, + this.GetRequestHeaders()); + } + + /// + /// Starts Creating Recovery Plan. + /// + /// Recovery Plan Name + /// Create Recovery Plan Input + /// Job response + public LongRunningOperationResponse CreateAzureSiteRecoveryRecoveryPlan(string recoveryPlanName, CreateRecoveryPlanInput input) + { + return this.GetSiteRecoveryClient().RecoveryPlan.BeginCreating(recoveryPlanName, + input, + this.GetRequestHeaders()); + } + + /// + /// Update Azure Site Recovery Recovery Plan. + /// + /// Recovery Plan Name + /// Update Recovery Plan Input + /// Job response + public LongRunningOperationResponse UpdateAzureSiteRecoveryRecoveryPlan(string recoveryPlanName, UpdateRecoveryPlanInput input) + { + return this.GetSiteRecoveryClient().RecoveryPlan.BeginUpdating(recoveryPlanName, + input, + this.GetRequestHeaders()); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs index 5786d915e7bf..05fa3706f169 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs @@ -296,6 +296,36 @@ public static class Constants /// Nic Selection Type - SelectedByUser /// public const string SelectedByUser = "SelectedByUser"; + + /// + /// Failover deployment model: NotApplicable + /// + public const string NotApplicable = "NotApplicable"; + + /// + /// Failover deployment model: Classic + /// + public const string Classic = "Classic"; + + /// + /// Failover deployment model: ResourceMananger + /// + public const string ResourceManager = "ResourceManager"; + + /// + /// Group Type: Shutdown + /// + public const string Shutdown = "Shutdown"; + + /// + /// Group Type: Boot + /// + public const string Boot = "Boot"; + + /// + /// Group Type: Failover + /// + public const string Failover = "Failover"; } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index c39a2740d0cd..3268ccdf6bad 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -773,6 +773,7 @@ public ASRProtectionEntity(ProtectableItem pi, ReplicationProtectedItem rpi, Pol { this.Policy = new ASRPolicy(policy); } + this.ReplicationProtectedItemId = rpi.Id; } private void UpdateDiskDetails(IList diskDetails) @@ -882,6 +883,11 @@ private void UpdateDiskDetails(IList diskDetails) /// Gets or sets Replication provider. /// public string ReplicationProvider { get; set; } + + /// + /// Gets or sets Replication protected item id. + /// + public string ReplicationProtectedItemId { get; set; } } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSParameterSets.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSParameterSets.cs index 0f9cfe2da2b7..f41a5db124ed 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSParameterSets.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSParameterSets.cs @@ -29,6 +29,11 @@ internal static class ASRParameterSets /// internal const string ByRPObject = "ByRPObject"; + /// + /// When only RP File is passed to the command. + /// + internal const string ByRPFile = "ByRPFile"; + /// /// When only Object is passed to the command. /// @@ -89,6 +94,11 @@ internal static class ASRParameterSets /// internal const string ByRPIdWithVMNetwork = "ByRPIdWithVMNetwork"; + /// + /// When only RP Object is passed along with Azure VM Network Id to the command. + /// + internal const string ByRPObjectWithAzureVMNetworkId = "ByRPObjectWithAzureVMNetworkId"; + /// /// When only PE Object is passed along with VM network ID to the command. /// @@ -233,5 +243,25 @@ internal static class ASRParameterSets /// For Disable replication group parameter set. /// internal const string DisableReplicationGroup = "DisableReplicationGroup"; + + /// + /// To append group to RP. + /// + internal const string AppendGroup = "AppendGroup"; + + /// + /// To remove group from RP + /// + internal const string RemoveGroup = "RemoveGroup"; + + /// + /// Add protected entities to RP + /// + internal const string AddProtectedEntities = "AddProtectedEntities"; + + /// + /// Remove protected entities from RP + /// + internal const string RemoveProtectedEntities = "RemoveProtectedEntities"; } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs new file mode 100644 index 000000000000..37b1dd2d3ac7 --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs @@ -0,0 +1,168 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Collections.Generic; +using System.Diagnostics.CodeAnalysis; +using System.Runtime.Serialization; +using Microsoft.Azure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + public class ASRRecoveryPlanGroup : RecoveryPlanGroup + { + public ASRRecoveryPlanGroup() + : base() + { + } + + public ASRRecoveryPlanGroup(RecoveryPlanGroup recoveryPlanGroup) + { + if(recoveryPlanGroup != null) + { + this.GroupType = recoveryPlanGroup.GroupType; + this.StartGroupActions = recoveryPlanGroup.StartGroupActions; + this.ReplicationProtectedItems = recoveryPlanGroup.ReplicationProtectedItems; + this.EndGroupActions = recoveryPlanGroup.EndGroupActions; + } + } + + public ASRRecoveryPlanGroup(string groupName, RecoveryPlanGroup recoveryPlanGroup) + : this(recoveryPlanGroup) + { + this.Name = groupName; + } + + /// + /// Gets or sets Recovery plan group Name. + /// + public string Name { get; set; } + + } + /// + /// Azure Site Recovery Recovery Plan. + /// + [SuppressMessage( + "Microsoft.StyleCop.CSharp.MaintainabilityRules", + "SA1402:FileMayOnlyContainASingleClass", + Justification = "Keeping all related objects together.")] + public class ASRRecoveryPlan + { + /// + /// Initializes a new instance of the class. + /// + public ASRRecoveryPlan() + { + } + + /// + /// Initializes a new instance of the class with required + /// parameters. + /// + /// Recovery plan object + public ASRRecoveryPlan(RecoveryPlan recoveryPlan) + { + this.Name = recoveryPlan.Name; + this.FriendlyName = recoveryPlan.Properties.FriendlyName; + this.ServerId = recoveryPlan.Properties.PrimaryFabricId; + this.TargetServerId = recoveryPlan.Properties.RecoveryFabricId; + this.FailoverDeploymentModel = recoveryPlan.Properties.FailoverDeploymentModel; + this.Groups = new List(); + int groupCount = 0; + string groupName = null; + foreach (RecoveryPlanGroup recoveryPlanGroup in recoveryPlan.Properties.Groups) + { + switch(recoveryPlanGroup.GroupType) + { + case Constants.Boot: + groupCount++; + groupName = "Group " + groupCount.ToString(); + break; + case Constants.Failover: + groupName = Constants.Failover; + break; + case Constants.Shutdown: + groupName = Constants.Shutdown; + break; + } + this.Groups.Add(new ASRRecoveryPlanGroup(groupName, recoveryPlanGroup)); + } + this.ReplicationProvider = recoveryPlan.Properties.ReplicationProviders; + } + + /// + /// Refreshes group names for the RP + /// + /// + public ASRRecoveryPlan RefreshASRRecoveryPlanGroupNames() + { + int bootGroupCount = 0; + for (int groupCount = 0; groupCount < Groups.Count; groupCount++) + { + switch (Groups[groupCount].GroupType) + { + case Constants.Boot: + bootGroupCount++; + Groups[groupCount].Name = "Group " + bootGroupCount.ToString(); + break; + case Constants.Failover: + Groups[groupCount].Name = Constants.Failover; + break; + case Constants.Shutdown: + Groups[groupCount].Name = Constants.Shutdown; + break; + } + } + return this; + } + + #region Properties + /// + /// Gets or sets Recovery plan Name. + /// + public string Name { get; set; } + + /// + /// Gets or sets FriendlyName of the Recovery Plan. + /// + public string FriendlyName { get; set; } + + /// + /// Gets or sets to Server ID. + /// + public string ServerId { get; set; } + + /// + /// Gets or sets target Server ID. + /// + public string TargetServerId { get; set; } + + /// + /// Gets or sets Failover Deployment Model + /// + public string FailoverDeploymentModel { get; set; } + + /// + /// Gets or sets ASRGroups + /// + public IList Groups { get; set; } + + /// + /// Gets or sets Replication provider. + /// + public IList ReplicationProvider { get; set; } + + #endregion + } +} \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs index 552d1f00971d..f5365a4d758b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery { /// - /// Retrieves Azure Site Recovery Server. + /// Retrieves Azure Site Recovery Policy. /// [Cmdlet(VerbsCommon.Get, "AzureRmSiteRecoveryPolicy", DefaultParameterSetName = ASRParameterSets.Default)] [OutputType(typeof(IEnumerable))] @@ -30,14 +30,14 @@ public class GetAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase { #region Parameters /// - /// Gets or sets ID of the Server. + /// Gets or sets name of the Policy. /// [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true)] [ValidateNotNullOrEmpty] public string Name { get; set; } /// - /// Gets or sets name of the Server. + /// Gets or sets friendly name of the Policy. /// [Parameter(ParameterSetName = ASRParameterSets.ByFriendlyName, Mandatory = true)] [ValidateNotNullOrEmpty] @@ -141,16 +141,16 @@ private void GetAll() /// /// Write Policies. /// - /// List of Profiles + /// List of Policies private void WritePolicies(IList policy) { this.WriteObject(policy.Select(p => new ASRPolicy(p)), true); } /// - /// Write Profile. + /// Write Policy. /// - /// Profile object + /// Policy object private void WritePolicy(Policy policy) { this.WriteObject(new ASRPolicy(policy)); diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs index 8dbb0a65313d..e7a674160574 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery { /// - /// Creates Azure Site Recovery Policy object in memory. + /// Removes Azure Site Recovery Policy. /// [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryPolicy")] public class RemoveAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs index 60b043deec3a..c488361c6893 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs @@ -106,6 +106,15 @@ internal static string CloudServiceNameNullOrEmpty { } } + /// + /// Looks up a localized string similar to Directory {0} Not Found. + /// + internal static string DirectoryNotFound { + get { + return ResourceManager.GetString("DirectoryNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to Are you sure want to disable protection on {0}. /// @@ -124,6 +133,15 @@ internal static string DisableProtectionWhatIfMessage { } } + /// + /// Looks up a localized string similar to File {0} Not Found. + /// + internal static string FileNotFound { + get { + return ResourceManager.GetString("FileNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to Calls using ID based parameter {0} will not be supported from next release. Please use its corresponding full object parameter instead.. /// @@ -431,6 +449,15 @@ internal static string ResourceNameNullOrEmpty { } } + /// + /// Looks up a localized string similar to Generated JSON for Recovery Plan {0} at {1}. + /// + internal static string RPJSONPath { + get { + return ResourceManager.GetString("RPJSONPath", resourceCulture); + } + } + /// /// Looks up a localized string similar to Server {0} is not associated with the Vault {1}. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx index 0c1045f42868..278b89f4e19a 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx @@ -310,4 +310,13 @@ Please provide a storage account with the same location as that of the vault. SiteRecovery vault type will be deprecated soon. Please use RecoveryServices vault type instead. + + Generated JSON for Recovery Plan {0} at {1} + + + Directory {0} Not Found + + + File {0} Not Found + \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryCommitFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryCommitFailoverJob.cs index d308bb5ffa62..4bc7e282bd0e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryCommitFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryCommitFailoverJob.cs @@ -44,6 +44,14 @@ public class StartAzureSiteRecoveryCommitFailoverJob : SiteRecoveryCmdletBase public string fabricName; #region Parameters + + /// + /// Gets or sets Recovery Plan object. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ASRRecoveryPlan RecoveryPlan { get; set; } + /// /// Gets or sets Protection Entity object. /// @@ -51,14 +59,6 @@ public class StartAzureSiteRecoveryCommitFailoverJob : SiteRecoveryCmdletBase [ValidateNotNullOrEmpty] public ASRProtectionEntity ProtectionEntity { get; set; } - /// - /// Gets or sets Failover direction for the recovery plan. - /// - [Parameter(Mandatory = false)] - [ValidateSet( - Constants.PrimaryToRecovery, - Constants.RecoveryToPrimary)] - public string Direction { get; set; } #endregion Parameters /// @@ -76,6 +76,9 @@ public override void ExecuteCmdlet() this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); this.SetPECommit(); break; + case ASRParameterSets.ByRPObject: + this.StartRpCommit(); + break; } } catch (Exception exception) @@ -113,5 +116,20 @@ private void SetPECommit() WriteObject(new ASRJob(jobResponse.Job)); } + + /// + /// Starts RP Commit. + /// + private void StartRpCommit() + { + LongRunningOperationResponse response = RecoveryServicesClient.StartAzureSiteRecoveryCommitFailover( + this.RecoveryPlan.Name); + + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs index 66bbc67ff6d4..19ba2a68565d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs @@ -17,6 +17,7 @@ using System.Management.Automation; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Microsoft.Azure.Management.SiteRecovery.Models; +using System.Collections.Generic; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -43,6 +44,14 @@ public class StartAzureSiteRecoveryPlannedFailoverJob : SiteRecoveryCmdletBase public string fabricName; #region Parameters + + /// + /// Gets or sets Recovery Plan object. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ASRRecoveryPlan RecoveryPlan { get; set; } + /// /// Gets or sets Protection Entity object. /// @@ -85,6 +94,9 @@ public override void ExecuteCmdlet() this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); this.StartPEPlannedFailover(); break; + case ASRParameterSets.ByRPObject: + this.StartRpPlannedFailover(); + break; } } catch (Exception exception) @@ -163,5 +175,67 @@ private void StartPEPlannedFailover() WriteObject(new ASRJob(jobResponse.Job)); } + + /// + /// Starts RP Planned failover. + /// + private void StartRpPlannedFailover() + { + // Refresh RP Object + var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); + this.RecoveryPlan = new ASRRecoveryPlan(rp.RecoveryPlan); + + RecoveryPlanPlannedFailoverInputProperties recoveryPlanPlannedFailoverInputProperties = new RecoveryPlanPlannedFailoverInputProperties() + { + FailoverDirection = this.Direction, + ProviderSpecificDetails = new List() + }; + + foreach (string replicationProvider in this.RecoveryPlan.ReplicationProvider) + { + if (0 == string.Compare( + replicationProvider, + Constants.HyperVReplicaAzure, + StringComparison.OrdinalIgnoreCase)) + { + if (this.Direction == Constants.PrimaryToRecovery) + { + RecoveryPlanHyperVReplicaAzureFailoverInput recoveryPlanHyperVReplicaAzureFailoverInput = new RecoveryPlanHyperVReplicaAzureFailoverInput() + { + InstanceType = replicationProvider, + PrimaryKekCertificatePfx = null, + SecondaryKekCertificatePfx = null, + VaultLocation = this.GetCurrentValutLocation() + }; + recoveryPlanPlannedFailoverInputProperties.ProviderSpecificDetails.Add(recoveryPlanHyperVReplicaAzureFailoverInput); + } + else + { + RecoveryPlanHyperVReplicaAzureFailbackInput recoveryPlanHyperVReplicaAzureFailbackInput = new RecoveryPlanHyperVReplicaAzureFailbackInput() + { + InstanceType = replicationProvider + "Failback", + DataSyncOption = this.Optimize == Constants.ForDowntime ? Constants.ForDowntime : Constants.ForSynchronization, + RecoveryVmCreationOption = "CreateVmIfNotFound" //CreateVmIfNotFound | NoAction + }; + recoveryPlanPlannedFailoverInputProperties.ProviderSpecificDetails.Add(recoveryPlanHyperVReplicaAzureFailbackInput); + } + } + } + + RecoveryPlanPlannedFailoverInput recoveryPlanPlannedFailoverInput = new RecoveryPlanPlannedFailoverInput() + { + Properties = recoveryPlanPlannedFailoverInputProperties + }; + + LongRunningOperationResponse response = RecoveryServicesClient.StartAzureSiteRecoveryPlannedFailover( + this.RecoveryPlan.Name, + recoveryPlanPlannedFailoverInput); + + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs index 670e34c0fba7..0bfa7cecc3c3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs @@ -18,6 +18,7 @@ using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Microsoft.Azure.Management.SiteRecovery.Models; using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; +using System.Collections.Generic; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -64,6 +65,15 @@ public class StartAzureSiteRecoveryTestFailoverJob : SiteRecoveryCmdletBase Constants.RecoveryToPrimary)] public string Direction { get; set; } + /// + /// Gets or sets Recovery Plan object. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByRPObjectWithVMNetwork, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByRPObjectWithAzureVMNetworkId, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ASRRecoveryPlan RecoveryPlan { get; set; } + /// /// Gets or sets Protection Entity object. /// @@ -76,6 +86,7 @@ public class StartAzureSiteRecoveryTestFailoverJob : SiteRecoveryCmdletBase /// /// Gets or sets Network. /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPObjectWithVMNetwork, Mandatory = true, ValueFromPipeline = true)] [Parameter(ParameterSetName = ASRParameterSets.ByPEObjectWithVMNetwork, Mandatory = true)] public ASRNetwork VMNetwork { get; set; } @@ -88,6 +99,7 @@ public class StartAzureSiteRecoveryTestFailoverJob : SiteRecoveryCmdletBase /// /// Gets or sets Network. /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPObjectWithAzureVMNetworkId, Mandatory = true, ValueFromPipeline = true)] [Parameter(ParameterSetName = ASRParameterSets.ByPEObjectWithAzureVMNetworkId, Mandatory = true)] public string AzureVMNetworkId { get; set; } @@ -103,27 +115,40 @@ public override void ExecuteCmdlet() switch(this.ParameterSetName) { case ASRParameterSets.ByPEObjectWithVMNetwork: + case ASRParameterSets.ByRPObjectWithVMNetwork: this.networkType = "VmNetworkAsInput"; this.networkId = this.VMNetwork.ID; break; //case ASRParameterSets.ByPEObjectWithLogicalVMNetwork: + //case ASRParameterSets.ByRPObjectWithLogicalVMNetwork: // this.networkType = "LogicalNetworkAsInput"; // this.networkId = this.LogicalVMNetwork.ID; // break; case ASRParameterSets.ByPEObjectWithAzureVMNetworkId: + case ASRParameterSets.ByRPObjectWithAzureVMNetworkId: this.networkType = "VmNetworkAsInput"; this.networkId = this.AzureVMNetworkId; break; case ASRParameterSets.ByPEObject: + case ASRParameterSets.ByRPObject: this.networkType = "NoNetworkAttachAsInput"; this.networkId = null; break; } - this.protectionEntityName = this.ProtectionEntity.Name; - this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; - this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); - this.StartPETestFailover(); + if (this.ParameterSetName == ASRParameterSets.ByRPObject || + this.ParameterSetName == ASRParameterSets.ByRPObjectWithVMNetwork || + this.ParameterSetName == ASRParameterSets.ByRPObjectWithAzureVMNetworkId) + { + this.StartRpTestFailover(); + } + else + { + this.protectionEntityName = this.ProtectionEntity.Name; + this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; + this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); + this.StartPETestFailover(); + } } catch (Exception exception) @@ -197,5 +222,63 @@ private void StartPETestFailover() WriteObject(new ASRJob(jobResponse.Job)); } + + /// + /// Starts RP Test failover. + /// + private void StartRpTestFailover() + { + // Refresh RP Object + var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); + this.RecoveryPlan = new ASRRecoveryPlan(rp.RecoveryPlan); + + RecoveryPlanTestFailoverInputProperties recoveryPlanTestFailoverInputProperties = new RecoveryPlanTestFailoverInputProperties() + { + FailoverDirection = this.Direction, + NetworkId = this.networkId, + NetworkType = this.networkType, + ProviderSpecificDetails = new List() + }; + + foreach (string replicationProvider in this.RecoveryPlan.ReplicationProvider) + { + if (0 == string.Compare( + replicationProvider, + Constants.HyperVReplicaAzure, + StringComparison.OrdinalIgnoreCase)) + { + if (this.Direction == Constants.PrimaryToRecovery) + { + RecoveryPlanHyperVReplicaAzureFailoverInput recoveryPlanHyperVReplicaAzureFailoverInput = new RecoveryPlanHyperVReplicaAzureFailoverInput() + { + InstanceType = replicationProvider, + PrimaryKekCertificatePfx = null, + SecondaryKekCertificatePfx = null, + VaultLocation = this.GetCurrentValutLocation() + }; + recoveryPlanTestFailoverInputProperties.ProviderSpecificDetails.Add(recoveryPlanHyperVReplicaAzureFailoverInput); + } + else + { + new ArgumentException(Properties.Resources.UnsupportedDirectionForTFO);// Throw Unsupported Direction Exception + } + } + } + + RecoveryPlanTestFailoverInput recoveryPlanTestFailoverInput = new RecoveryPlanTestFailoverInput() + { + Properties = recoveryPlanTestFailoverInputProperties + }; + + LongRunningOperationResponse response = RecoveryServicesClient.StartAzureSiteRecoveryTestFailover( + this.RecoveryPlan.Name, + recoveryPlanTestFailoverInput); + + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs index 7e714666d73b..fb72d6b0caa1 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs @@ -19,6 +19,7 @@ using System.Threading; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Microsoft.Azure.Management.SiteRecovery.Models; +using System.Collections.Generic; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -46,6 +47,13 @@ public class StartAzureSiteRecoveryUnplannedFailoverJob : SiteRecoveryCmdletBase #region Parameters + /// + /// Gets or sets Recovery Plan object. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ASRRecoveryPlan RecoveryPlan { get; set; } + /// /// Gets or sets Protection Entity object. /// @@ -56,7 +64,8 @@ public class StartAzureSiteRecoveryUnplannedFailoverJob : SiteRecoveryCmdletBase /// /// Gets or sets Failover direction for the recovery plan. /// - [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = false)] + [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = true, ValueFromPipeline = false)] [ValidateSet( Constants.PrimaryToRecovery, Constants.RecoveryToPrimary)] @@ -65,7 +74,8 @@ public class StartAzureSiteRecoveryUnplannedFailoverJob : SiteRecoveryCmdletBase /// /// Gets or sets switch parameter. This is required to PerformSourceSideActions. /// - [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = false)] + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = false, ValueFromPipeline = false)] + [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = false, ValueFromPipeline = false)] public SwitchParameter PerformSourceSideActions { get; set; } #endregion Parameters @@ -85,6 +95,9 @@ public override void ExecuteCmdlet() this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); this.StartPEUnplannedFailover(); break; + case ASRParameterSets.ByRPObject: + this.StartRpUnplannedFailover(); + break; } } catch (Exception exception) @@ -153,5 +166,58 @@ private void StartPEUnplannedFailover() WriteObject(new ASRJob(jobResponse.Job)); } + + /// + /// Starts RP Unplanned failover. + /// + private void StartRpUnplannedFailover() + { + // Refresh RP Object + var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); + this.RecoveryPlan = new ASRRecoveryPlan(rp.RecoveryPlan); + + RecoveryPlanUnplannedFailoverInputProperties recoveryPlanUnplannedFailoverInputProperties = new RecoveryPlanUnplannedFailoverInputProperties() + { + FailoverDirection = this.Direction, + SourceSiteOperations = this.PerformSourceSideActions ? "Required" : "NotRequired", //Required|NotRequired + ProviderSpecificDetails = new List() + }; + + foreach (string replicationProvider in this.RecoveryPlan.ReplicationProvider) + { + if (0 == string.Compare( + replicationProvider, + Constants.HyperVReplicaAzure, + StringComparison.OrdinalIgnoreCase)) + { + if (this.Direction == Constants.PrimaryToRecovery) + { + RecoveryPlanHyperVReplicaAzureFailoverInput recoveryPlanHyperVReplicaAzureFailoverInput = new RecoveryPlanHyperVReplicaAzureFailoverInput() + { + InstanceType = replicationProvider, + PrimaryKekCertificatePfx = null, + SecondaryKekCertificatePfx = null, + VaultLocation = this.GetCurrentValutLocation() + }; + recoveryPlanUnplannedFailoverInputProperties.ProviderSpecificDetails.Add(recoveryPlanHyperVReplicaAzureFailoverInput); + } + } + } + + RecoveryPlanUnplannedFailoverInput recoveryPlanUnplannedFailoverInput = new RecoveryPlanUnplannedFailoverInput() + { + Properties = recoveryPlanUnplannedFailoverInputProperties + }; + + LongRunningOperationResponse response = RecoveryServicesClient.StartAzureSiteRecoveryUnplannedFailover( + this.RecoveryPlan.Name, + recoveryPlanUnplannedFailoverInput); + + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs index 10e18ec958b6..c721314a436e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs @@ -44,17 +44,26 @@ public class UpdateAzureSiteRecoveryProtection : SiteRecoveryCmdletBase public string fabricName; #region Parameters + + /// + /// Gets or sets Recovery Plan object. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ASRRecoveryPlan RecoveryPlan { get; set; } + /// /// Gets or sets Protection Entity Object. /// - [Parameter(Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ASRProtectionEntity ProtectionEntity { get; set; } /// /// Gets or sets Failover direction for the recovery plan. /// - [Parameter(Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = true, ValueFromPipeline = false)] [ValidateSet( Constants.PrimaryToRecovery, Constants.RecoveryToPrimary)] @@ -69,11 +78,18 @@ public override void ExecuteCmdlet() { try { - this.protectionEntityName = this.ProtectionEntity.Name; - this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; - this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); - this.SetPEReprotect(); - + switch (this.ParameterSetName) + { + case ASRParameterSets.ByPEObject: + this.protectionEntityName = this.ProtectionEntity.Name; + this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; + this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); + this.SetPEReprotect(); + break; + case ASRParameterSets.ByRPObject: + this.SetRPReprotect(); + break; + } } catch (Exception exception) { @@ -82,7 +98,7 @@ public override void ExecuteCmdlet() } /// - /// Set PE protection. + /// PE Reprotect. /// private void SetPEReprotect() { @@ -147,5 +163,20 @@ private void SetPEReprotect() WriteObject(new ASRJob(jobResponse.Job)); } + + /// + /// Starts RP Reprotect. + /// + private void SetRPReprotect() + { + LongRunningOperationResponse response = RecoveryServicesClient.UpdateAzureSiteRecoveryProtection( + this.RecoveryPlan.Name); + + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs new file mode 100644 index 000000000000..5dba7e2b17ed --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs @@ -0,0 +1,159 @@ +// ---------------------------------------------------------------------------------- +// +// 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.ComponentModel; +using System.Management.Automation; +using Microsoft.Azure.Management.SiteRecovery.Models; +using Microsoft.Azure.Portal.RecoveryServices.Models.Common; +using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Updates Azure Site Recovery Recovery Plan object in memory. + /// + [Cmdlet(VerbsData.Edit, "AzureRmSiteRecoveryRecoveryPlan", DefaultParameterSetName = ASRParameterSets.AppendGroup)] + public class EditAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase + { + #region Parameters + + /// + /// Gets or sets Name of the Recovery Plan. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRRecoveryPlan RecoveryPlan { get; set; } + + /// + /// Gets or sets switch parameter + /// + [Parameter(ParameterSetName = ASRParameterSets.AppendGroup, Mandatory = true)] + public SwitchParameter AppendGroup { get; set; } + + /// + /// Gets or sets switch parameter + /// + [Parameter(ParameterSetName = ASRParameterSets.RemoveGroup, Mandatory = true)] + public ASRRecoveryPlanGroup RemoveGroup { get; set; } + + /// + /// Gets or sets group + /// + [Parameter(ParameterSetName = ASRParameterSets.AddProtectedEntities, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.RemoveProtectedEntities, Mandatory = true)] + public ASRRecoveryPlanGroup Group { get; set; } + + /// + /// Gets or sets switch parameter + /// + [Parameter(ParameterSetName = ASRParameterSets.AddProtectedEntities, Mandatory = true)] + public ASRProtectionEntity[] AddProtectedEntities { get; set; } + + /// + /// Gets or sets switch parameter + /// + [Parameter(ParameterSetName = ASRParameterSets.RemoveProtectedEntities, Mandatory = true)] + public ASRProtectionEntity[] RemoveProtectedEntities { get; set; } + + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + ASRRecoveryPlanGroup tempGroup; + + switch (this.ParameterSetName) + { + case ASRParameterSets.AppendGroup: + RecoveryPlanGroup recoveryPlanGroup = new RecoveryPlanGroup() + { + GroupType = Constants.Boot, + ReplicationProtectedItems = new List(), + StartGroupActions = new List(), + EndGroupActions = new List() + }; + + this.RecoveryPlan.Groups.Add(new ASRRecoveryPlanGroup("Group " + (RecoveryPlan.Groups.Count - 1).ToString(), recoveryPlanGroup)); + break; + case ASRParameterSets.RemoveGroup: + tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.CompareOrdinal(g.Name, RemoveGroup.Name) == 0); + if (tempGroup != null) + { + this.RecoveryPlan.Groups.Remove(tempGroup); + this.RecoveryPlan = this.RecoveryPlan.RefreshASRRecoveryPlanGroupNames(); + } + break; + case ASRParameterSets.AddProtectedEntities: + foreach (ASRProtectionEntity pe in AddProtectedEntities) + { + string fabricName = Utilities.GetValueFromArmId(pe.ID, ARMResourceTypeConstants.ReplicationFabrics); + // fetch the latest PE object + ProtectableItemResponse protectableItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(fabricName, + pe.ProtectionContainerId, pe.Name); + + ReplicationProtectedItemResponse replicationProtectedItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(fabricName, + pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + + RecoveryPlanProtectedItem recoveryPlanProtectedItem = new RecoveryPlanProtectedItem(); + recoveryPlanProtectedItem.Id = replicationProtectedItemResponse.ReplicationProtectedItem.Id; + tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.CompareOrdinal(g.Name, Group.Name) == 0); + if (tempGroup != null) + { + this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.Add(recoveryPlanProtectedItem); + } + } + break; + case ASRParameterSets.RemoveProtectedEntities: + foreach (ASRProtectionEntity pe in RemoveProtectedEntities) + { + string fabricName = Utilities.GetValueFromArmId(pe.ID, ARMResourceTypeConstants.ReplicationFabrics); + // fetch the latest PE object + ProtectableItemResponse protectableItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(fabricName, + pe.ProtectionContainerId, pe.Name); + + ReplicationProtectedItemResponse replicationProtectedItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(fabricName, + pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + + tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.CompareOrdinal(g.Name, Group.Name) == 0); + if (tempGroup != null) + { + RecoveryPlanProtectedItem tempRecoveryPlanProtectedItem = this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.FirstOrDefault(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0); + if (tempRecoveryPlanProtectedItem != null) + { + this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.Remove(tempRecoveryPlanProtectedItem); + } + } + } + break; + }; + this.WriteObject(this.RecoveryPlan); + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + } +} diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs new file mode 100644 index 000000000000..2c727435cd4c --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs @@ -0,0 +1,204 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Management.SiteRecovery.Models; +using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; +using Newtonsoft.Json; +using System.IO; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Retrieves Azure Site Recovery Recovery Plans. + /// + [Cmdlet(VerbsCommon.Get, "AzureRmSiteRecoveryRecoveryPlan", DefaultParameterSetName = ASRParameterSets.Default)] + [OutputType(typeof(IEnumerable))] + public class GetAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase + { + #region Parameters + /// + /// Gets or sets name of the Recovery Plan. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true)] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + /// + /// Gets or sets friendly name of the Recovery Plan. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByFriendlyName, Mandatory = true)] + [ValidateNotNullOrEmpty] + public string FriendlyName { get; set; } + + /// + /// Gets or sets RP JSON FilePath. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByName, Position = 1, Mandatory = false)] + [Parameter(ParameterSetName = ASRParameterSets.ByFriendlyName, Position = 1, Mandatory = false)] + public string Path { get; set; } + + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + switch (this.ParameterSetName) + { + case ASRParameterSets.ByFriendlyName: + this.GetByFriendlyName(); + break; + case ASRParameterSets.ByName: + this.GetByName(); + break; + case ASRParameterSets.Default: + this.GetAll(); + break; + } + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + + /// + /// Queries by Friendly name. + /// + private void GetByFriendlyName() + { + RecoveryPlanListResponse recoveryPlanListResponse = + RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(); + bool found = false; + + foreach (RecoveryPlan recoveryPlan in recoveryPlanListResponse.RecoveryPlans) + { + if (0 == string.Compare(this.FriendlyName, recoveryPlan.Properties.FriendlyName, true)) + { + if (!string.IsNullOrEmpty(this.Path)) + { + GetRecoveryPlanFile(recoveryPlan); + } + + this.WriteRecoveryPlan(recoveryPlan); + found = true; + } + } + + if (!found) + { + throw new InvalidOperationException( + string.Format( + Properties.Resources.RecoveryPlanNotFound, + this.FriendlyName, + PSRecoveryServicesClient.asrVaultCreds.ResourceName)); + } + } + + /// + /// Queries by Name. + /// + private void GetByName() + { + this.WriteRecoveryPlan(RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.Name).RecoveryPlan); + if (!string.IsNullOrEmpty(this.Path)) + { + GetRecoveryPlanFile(RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.Name).RecoveryPlan); + } + + //RecoveryPlanListResponse recoveryPlanListResponse = + // RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(); + //bool found = false; + + //foreach (RecoveryPlan recoveryPlan in recoveryPlanListResponse.RecoveryPlans) + //{ + // if (0 == string.Compare(this.Name, recoveryPlan.Name, true)) + // { + // if (!string.IsNullOrEmpty(this.Path)) + // { + // GetRecoveryPlanFile(recoveryPlan); + // } + + // this.WriteRecoveryPlan(recoveryPlan); + // found = true; + // } + //} + + //if (!found) + //{ + // throw new InvalidOperationException( + // string.Format( + // Properties.Resources.RecoveryPlanNotFound, + // this.Name, + // PSRecoveryServicesClient.asrVaultCreds.ResourceName)); + //} + } + + /// + /// Queries all / by default. + /// + private void GetAll() + { + RecoveryPlanListResponse recoveryPlanListResponse = + RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(); + + this.WriteRecoveryPlans(recoveryPlanListResponse.RecoveryPlans); + } + + private void GetRecoveryPlanFile(RecoveryPlan recoveryPlan) + { + recoveryPlan = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(recoveryPlan.Name).RecoveryPlan; + + string filePath = string.IsNullOrEmpty(this.Path) ? Utilities.GetDefaultPath() : this.Path; + if(!Directory.Exists(filePath)) + { + throw new DirectoryNotFoundException(string.Format(Properties.Resources.DirectoryNotFound, filePath)); + } + + string fileName = string.Format("{0}_{1}.json", recoveryPlan.Name, DateTime.UtcNow.ToString("yyyy-MM-ddTHH-mm-ss")); + string fullFileName = System.IO.Path.Combine(filePath, fileName); + using (System.IO.StreamWriter file = new System.IO.StreamWriter(@fullFileName, false)) + { + string json = JsonConvert.SerializeObject(recoveryPlan); + file.WriteLine(json); + //this.WriteObject(string.Format(Properties.Resources.RPJSONPath, recoveryPlan.Name, fullFileName)); + } + } + + /// + /// Write Recovery Plans. + /// + /// List of Recovery Plans + private void WriteRecoveryPlans(IList recoveryPlanList) + { + this.WriteObject(recoveryPlanList.Select(rp => new ASRRecoveryPlan(rp)), true); + } + + /// + /// Write Recovery Plan. + /// + /// Recovery Plan object + private void WriteRecoveryPlan(RecoveryPlan recoveryPlan) + { + this.WriteObject(new ASRRecoveryPlan(recoveryPlan)); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs new file mode 100644 index 000000000000..43bed996870d --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs @@ -0,0 +1,194 @@ +// ---------------------------------------------------------------------------------- +// +// 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.ComponentModel; +using System.Management.Automation; +using Microsoft.Azure.Management.SiteRecovery.Models; +using Microsoft.Azure.Portal.RecoveryServices.Models.Common; +using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Creates Azure Site Recovery Recovery Plan object. + /// + [Cmdlet(VerbsCommon.New, "AzureRmSiteRecoveryRecoveryPlan", DefaultParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + public class NewAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase + { + /// + /// Gets or sets Name of the primary server. + /// + public string primaryserver; + + /// + /// Gets or sets Name of the recovery server. + /// + public string recoveryserver; + + /// + /// Gets or sets failover deployment model + /// + public string failoverDeploymentModel; + + #region Parameters + + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, Mandatory = true)] + public string Name { get; set; } + + /// + /// Gets or sets Recovery Points of the Policy. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRServer PrimaryServer { get; set; } + + /// + /// Gets or sets Application Consistent Snapshot Frequency of the Policy in hours. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRServer RecoveryServer { get; set; } + + /// + /// Gets or sets Application Consistent Snapshot Frequency of the Policy in hours. + /// + [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRSite PrimarySite { get; set; } + + /// + /// Gets or sets switch parameter. On passing, command does not ask for confirmation. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, Mandatory = true)] + public SwitchParameter Azure { get; set; } + + /// + /// Gets or sets Replication Provider of the Policy. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, Mandatory = true)] + [ValidateNotNullOrEmpty] + [ValidateSet( + Constants.Classic, + Constants.ResourceManager)] + public string FailoverDeploymentModel { get; set; } + + /// + /// Gets or sets Replication Frequency of the Policy in seconds. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRProtectionEntity[] ProtectionEntityList { get; set; } + + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + switch(this.ParameterSetName) + { + case ASRParameterSets.EnterpriseToEnterprise: + failoverDeploymentModel = Constants.NotApplicable; + this.primaryserver = RecoveryServicesClient.GetAzureSiteRecoveryFabric(Utilities.GetValueFromArmId(this.PrimaryServer.ID, ARMResourceTypeConstants.ReplicationFabrics)).Fabric.Id; + this.recoveryserver = RecoveryServicesClient.GetAzureSiteRecoveryFabric(Utilities.GetValueFromArmId(this.RecoveryServer.ID, ARMResourceTypeConstants.ReplicationFabrics)).Fabric.Id; + break; + case ASRParameterSets.EnterpriseToAzure: + failoverDeploymentModel = this.FailoverDeploymentModel; + this.primaryserver = RecoveryServicesClient.GetAzureSiteRecoveryFabric(Utilities.GetValueFromArmId(this.PrimaryServer.ID, ARMResourceTypeConstants.ReplicationFabrics)).Fabric.Id; + this.recoveryserver = Constants.AzureContainer; + break; + case ASRParameterSets.HyperVSiteToAzure: + failoverDeploymentModel = this.FailoverDeploymentModel; + this.primaryserver = this.PrimarySite.ID; + this.recoveryserver = Constants.AzureContainer; + break; + + } + this.CreateReplicationPlan(); + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + + /// + /// Creates Replication Plan + /// + private void CreateReplicationPlan() + { + CreateRecoveryPlanInputProperties createRecoveryPlanInputProperties = new CreateRecoveryPlanInputProperties() + { + FailoverDeploymentModel = failoverDeploymentModel, + Groups = new List(), + PrimaryFabricId = this.primaryserver, + RecoveryFabricId = this.recoveryserver + }; + + RecoveryPlanGroup recoveryPlanGroup = new RecoveryPlanGroup() + { + GroupType = Constants.Boot, + ReplicationProtectedItems = new List(), + StartGroupActions = new List(), + EndGroupActions = new List() + }; + + foreach (ASRProtectionEntity pe in ProtectionEntityList) + { + string fabricName = Utilities.GetValueFromArmId(pe.ID, ARMResourceTypeConstants.ReplicationFabrics); + // fetch the latest PE object + ProtectableItemResponse protectableItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(fabricName, + pe.ProtectionContainerId, pe.Name); + + ReplicationProtectedItemResponse replicationProtectedItemResponse = + RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(fabricName, + pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + + RecoveryPlanProtectedItem recoveryPlanProtectedItem = new RecoveryPlanProtectedItem(); + recoveryPlanProtectedItem.Id = replicationProtectedItemResponse.ReplicationProtectedItem.Id; + recoveryPlanGroup.ReplicationProtectedItems.Add(recoveryPlanProtectedItem); + + } + + createRecoveryPlanInputProperties.Groups.Add(recoveryPlanGroup); + + CreateRecoveryPlanInput createRecoveryPlanInput = new CreateRecoveryPlanInput() + { + Properties = createRecoveryPlanInputProperties + }; + + LongRunningOperationResponse response = + RecoveryServicesClient.CreateAzureSiteRecoveryRecoveryPlan(this.Name, createRecoveryPlanInput); + + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + } + } +} diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs new file mode 100644 index 000000000000..fb5378153a7f --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs @@ -0,0 +1,61 @@ +// ---------------------------------------------------------------------------------- +// +// 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.ComponentModel; +using System.Management.Automation; +using Microsoft.Azure.Management.SiteRecovery.Models; +using Microsoft.Azure.Portal.RecoveryServices.Models.Common; +using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Remove Azure Site Recovery Recovery Plan. + /// + [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryRecoveryPlan")] + public class RemoveAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase + { + #region Parameters + + /// + /// Gets or sets Name of the Recovery Plan. + /// + [Parameter(Mandatory = true)] + public ASRRecoveryPlan RecoveryPlan { get; set; } + + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + LongRunningOperationResponse response = RecoveryServicesClient.RemoveAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); + + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + } +} diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs new file mode 100644 index 000000000000..97ee81b2938a --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs @@ -0,0 +1,145 @@ +// ---------------------------------------------------------------------------------- +// +// 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.ComponentModel; +using System.Management.Automation; +using Microsoft.Azure.Management.SiteRecovery.Models; +using Microsoft.Azure.Portal.RecoveryServices.Models.Common; +using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; +using System.Collections.Generic; +using Newtonsoft.Json; +using System.IO; + +namespace Microsoft.Azure.Commands.SiteRecovery +{ + /// + /// Creates Azure Site Recovery Recovery Plan object. + /// + [Cmdlet(VerbsData.Update, "AzureRmSiteRecoveryRecoveryPlan", DefaultParameterSetName = ASRParameterSets.ByRPObject)] + public class UpdateAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase + { + #region Parameters + + /// + /// Gets or sets Name of the Recovery Plan. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true)] + public ASRRecoveryPlan RecoveryPlan { get; set; } + + /// + /// Gets or sets RP JSON FilePath. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPFile, Mandatory = true)] + public string Path { get; set; } + + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + switch (this.ParameterSetName) + { + case ASRParameterSets.ByRPObject: + UpdateReplicationPlan(this.RecoveryPlan); + break; + case ASRParameterSets.ByRPFile: + if (!File.Exists(this.Path)) + { + throw new FileNotFoundException(string.Format(Properties.Resources.FileNotFound, this.Path)); ; + } + string filePath = this.Path; + RecoveryPlan recoveryPlan = null; + using (System.IO.StreamReader file = new System.IO.StreamReader(filePath)) + { + recoveryPlan = JsonConvert.DeserializeObject(file.ReadToEnd()); + } + UpdateReplicationPlan(recoveryPlan); + break; + } + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + + /// + /// Update Replication Plan: By powerShell object + /// + private void UpdateReplicationPlan(ASRRecoveryPlan asrRecoveryPlan) + { + UpdateRecoveryPlanInputProperties updateRecoveryPlanInputProperties = new UpdateRecoveryPlanInputProperties() + { + Groups = new List(), + }; + + foreach (ASRRecoveryPlanGroup asrRecoveryPlanGroup in asrRecoveryPlan.Groups) + { + RecoveryPlanGroup recoveryPlanGroup = new RecoveryPlanGroup() + { + GroupType = asrRecoveryPlanGroup.GroupType, + ReplicationProtectedItems = asrRecoveryPlanGroup.ReplicationProtectedItems, + StartGroupActions = asrRecoveryPlanGroup.StartGroupActions, + EndGroupActions = asrRecoveryPlanGroup.EndGroupActions + }; + updateRecoveryPlanInputProperties.Groups.Add(recoveryPlanGroup); + } + + UpdateRecoveryPlanInput updateRecoveryPlanInput = new UpdateRecoveryPlanInput() + { + Properties = updateRecoveryPlanInputProperties + }; + + UpdateReplicationPlan(asrRecoveryPlan.Name, updateRecoveryPlanInput); + } + + /// + /// Update Replication Plan: By Service object + /// + private void UpdateReplicationPlan(RecoveryPlan recoveryPlan) + { + UpdateRecoveryPlanInputProperties updateRecoveryPlanInputProperties = new UpdateRecoveryPlanInputProperties() + { + Groups = recoveryPlan.Properties.Groups, + }; + + UpdateRecoveryPlanInput updateRecoveryPlanInput = new UpdateRecoveryPlanInput() + { + Properties = updateRecoveryPlanInputProperties + }; + + UpdateReplicationPlan(recoveryPlan.Name, updateRecoveryPlanInput); + } + + /// + /// Update Replication Plan: Utility call + /// + private void UpdateReplicationPlan(string recoveryPlanName, UpdateRecoveryPlanInput updateRecoveryPlanInput) + { + LongRunningOperationResponse response = + RecoveryServicesClient.UpdateAzureSiteRecoveryRecoveryPlan(recoveryPlanName, updateRecoveryPlanInput); + + JobResponse jobResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryJobDetails(PSRecoveryServicesClient.GetJobIdFromReponseLocation(response.Location)); + + WriteObject(new ASRJob(jobResponse.Job)); + } + } +} diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config index 7ed9b4f2dd06..ec6c0ce65fe9 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config @@ -4,7 +4,7 @@ - + From 5197bc237314c43152a55796ae6d7204a23ec61d Mon Sep 17 00:00:00 2001 From: vijaynar Date: Fri, 22 Jan 2016 17:25:23 +0530 Subject: [PATCH 16/46] Added encryption support --- .../Common/SiteRecoveryCmdletBase.cs | 2 +- .../Policy/NewAzureSiteRecoveryPolicy.cs | 92 +++++++++---------- ...tartAzureSiteRecoveryPlannedFailoverJob.cs | 86 ++++++++++++----- .../StartAzureSiteRecoveryTestFailoverJob.cs | 92 +++++++++++++------ ...rtAzureSiteRecoveryUnPlannedFailoverJob.cs | 83 ++++++++++++----- 5 files changed, 235 insertions(+), 120 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs index 709ed79b9c42..02e08724cd04 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs @@ -240,7 +240,7 @@ protected void ValidateUsageById(string replicationProvider, string paramName) /// Gets the current vault location. /// /// The current vault location. - protected string GetCurrentValutLocation() + protected string GetCurrentVaultLocation() { string location = string.Empty; diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs index 82f52da68faf..e0f4efd44cdf 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs @@ -142,10 +142,10 @@ public class NewAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase public string RecoveryAzureStorageAccountId { get; set; } /// - /// Gets or sets switch parameter. On passing, command does not ask for confirmation. + /// Gets or sets Encrypt parameter. On passing, data will be encrypted. /// - [Parameter] - public SwitchParameter Force { get; set; } + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)] + public SwitchParameter Encrypt { get; set; } #endregion Parameters @@ -185,47 +185,48 @@ private void EnterpriseToEnterprisePolicyObject() ushort replicationFrequencyInSeconds = PSRecoveryServicesClient.ConvertReplicationFrequencyToUshort(this.ReplicationFrequencyInSeconds); - CreatePolicyInputProperties createPolicyInputProperties = new CreatePolicyInputProperties(); + var createPolicyInputProperties = new CreatePolicyInputProperties(); - if(string.Compare(this.ReplicationProvider, Constants.HyperVReplica2012, StringComparison.OrdinalIgnoreCase) == 0) + if (string.Compare(this.ReplicationProvider, Constants.HyperVReplica2012, StringComparison.OrdinalIgnoreCase) == 0) { createPolicyInputProperties.ProviderSpecificInput = new HyperVReplica2012PolicyInput() - { - AllowedAuthenticationType = - (ushort)((string.Compare(this.Authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2), - ApplicationConsistentSnapshotFrequencyInHours = this.ApplicationConsistentSnapshotFrequencyInHours, - Compression = this.CompressionEnabled == true ? "Enable" : "Disable", - InitialReplicationMethod = - (string.Compare(this.ReplicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? "OverNetwork" : "Offline", - OnlineReplicationStartTime = this.ReplicationStartTime, - RecoveryPoints = this.RecoveryPoints, - ReplicaDeletion = this.AllowReplicaDeletion == true ? "Required" : "NotRequired", - ReplicationPort = this.ReplicationPort - }; + { + AllowedAuthenticationType = + (ushort)((string.Compare(this.Authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2), + ApplicationConsistentSnapshotFrequencyInHours = this.ApplicationConsistentSnapshotFrequencyInHours, + Compression = this.CompressionEnabled == true ? "Enable" : "Disable", + InitialReplicationMethod = + (string.Compare(this.ReplicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? "OverNetwork" : "Offline", + OnlineReplicationStartTime = this.ReplicationStartTime, + RecoveryPoints = this.RecoveryPoints, + ReplicaDeletion = this.AllowReplicaDeletion == true ? "Required" : "NotRequired", + ReplicationPort = this.ReplicationPort + }; } else { createPolicyInputProperties.ProviderSpecificInput = new HyperVReplica2012R2PolicyInput() - { - AllowedAuthenticationType = - (ushort)((string.Compare(this.Authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2), - ApplicationConsistentSnapshotFrequencyInHours = this.ApplicationConsistentSnapshotFrequencyInHours, - Compression = this.CompressionEnabled == true ? "Enable" : "Disable", - InitialReplicationMethod = - (string.Compare(this.ReplicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? "OverNetwork" : "Offline", - OnlineReplicationStartTime = this.ReplicationStartTime, - RecoveryPoints = this.RecoveryPoints, - ReplicaDeletion = this.AllowReplicaDeletion == true ? "Required" : "NotRequired", - ReplicationFrequencyInSeconds = replicationFrequencyInSeconds, - ReplicationPort = this.ReplicationPort - }; + { + AllowedAuthenticationType = + (ushort)((string.Compare(this.Authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2), + ApplicationConsistentSnapshotFrequencyInHours = this.ApplicationConsistentSnapshotFrequencyInHours, + Compression = this.CompressionEnabled == true ? "Enable" : "Disable", + InitialReplicationMethod = + (string.Compare(this.ReplicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? "OverNetwork" : "Offline", + OnlineReplicationStartTime = this.ReplicationStartTime, + RecoveryPoints = this.RecoveryPoints, + ReplicaDeletion = this.AllowReplicaDeletion == true ? "Required" : "NotRequired", + ReplicationFrequencyInSeconds = replicationFrequencyInSeconds, + ReplicationPort = this.ReplicationPort + }; } - CreatePolicyInput createPolicyInput = new CreatePolicyInput() { + var createPolicyInput = new CreatePolicyInput() + { Properties = createPolicyInputProperties }; - + LongRunningOperationResponse responseBlue = RecoveryServicesClient.CreatePolicy(this.Name, createPolicyInput); @@ -254,33 +255,32 @@ private void EnterpriseToAzurePolicyObject() ushort replicationFrequencyInSeconds = PSRecoveryServicesClient.ConvertReplicationFrequencyToUshort(this.ReplicationFrequencyInSeconds); - HyperVReplicaAzurePolicyInput hyperVReplicaAzurePolicyInput = - new HyperVReplicaAzurePolicyInput() - { - ApplicationConsistentSnapshotFrequencyInHours = - this.ApplicationConsistentSnapshotFrequencyInHours, - Encryption = "Disable", - OnlineIrStartTime = this.ReplicationStartTime, - RecoveryPointHistoryDuration = this.RecoveryPoints, - ReplicationInterval = replicationFrequencyInSeconds, - - }; + var hyperVReplicaAzurePolicyInput = new HyperVReplicaAzurePolicyInput() + { + ApplicationConsistentSnapshotFrequencyInHours = + this.ApplicationConsistentSnapshotFrequencyInHours, + Encryption = this.Encrypt ? "Enable" : "Disable", + OnlineIrStartTime = this.ReplicationStartTime, + RecoveryPointHistoryDuration = this.RecoveryPoints, + ReplicationInterval = replicationFrequencyInSeconds, + + }; hyperVReplicaAzurePolicyInput.StorageAccounts = new System.Collections.Generic.List(); if (RecoveryAzureStorageAccountId != null) { - string storageAccount = this.RecoveryAzureStorageAccountId; + string storageAccount = this.RecoveryAzureStorageAccountId; hyperVReplicaAzurePolicyInput.StorageAccounts.Add(storageAccount); } - CreatePolicyInputProperties createPolicyInputProperties = new CreatePolicyInputProperties() + var createPolicyInputProperties = new CreatePolicyInputProperties() { ProviderSpecificInput = hyperVReplicaAzurePolicyInput }; - CreatePolicyInput createPolicyInput = new CreatePolicyInput() + var createPolicyInput = new CreatePolicyInput() { Properties = createPolicyInputProperties }; diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs index fdb406333e87..5fd56867038b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs @@ -18,6 +18,7 @@ using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Microsoft.Azure.Management.SiteRecovery.Models; using System.Collections.Generic; +using System.IO; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -28,6 +29,8 @@ namespace Microsoft.Azure.Commands.SiteRecovery [OutputType(typeof(ASRJob))] public class StartAzureSiteRecoveryPlannedFailoverJob : SiteRecoveryCmdletBase { + #region local parameters + /// /// Gets or sets Name of the PE. /// @@ -43,6 +46,18 @@ public class StartAzureSiteRecoveryPlannedFailoverJob : SiteRecoveryCmdletBase /// public string fabricName; + /// + /// Primary Kek Cert pfx file. + /// + string primaryKekCertpfx = null; + + /// + /// Secondary Kek Cert pfx file. + /// + string secondaryKekCertpfx = null; + + #endregion local parameters + #region Parameters /// @@ -60,23 +75,33 @@ public class StartAzureSiteRecoveryPlannedFailoverJob : SiteRecoveryCmdletBase public ASRProtectionEntity ProtectionEntity { get; set; } /// - /// Gets or sets Failover direction for the recovery plan. + /// Gets or sets Failover direction for the protected Item. /// [Parameter(Mandatory = true)] - [ValidateSet( - Constants.PrimaryToRecovery, - Constants.RecoveryToPrimary)] + [ValidateSet(Constants.PrimaryToRecovery, Constants.RecoveryToPrimary)] public string Direction { get; set; } /// /// Gets or sets the Optimize value. /// [Parameter] - [ValidateSet( - Constants.ForDowntime, - Constants.ForSynchronization)] + [ValidateSet(Constants.ForDowntime, Constants.ForSynchronization)] public string Optimize { get; set; } + /// + /// Gets or sets Data encryption certificate file path for failover of Protected Item. + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string DataEncryptionPrimaryCertFile { get; set; } + + /// + /// Gets or sets Data encryption certificate file path for failover of Protected Item. + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string DataEncryptionSecondaryCertFile { get; set; } + #endregion Parameters /// @@ -85,6 +110,19 @@ public class StartAzureSiteRecoveryPlannedFailoverJob : SiteRecoveryCmdletBase public override void ExecuteSiteRecoveryCmdlet() { base.ExecuteSiteRecoveryCmdlet(); + + if (!string.IsNullOrEmpty(this.DataEncryptionPrimaryCertFile)) + { + byte[] certBytesPrimary = File.ReadAllBytes(this.DataEncryptionPrimaryCertFile); + primaryKekCertpfx = Convert.ToBase64String(certBytesPrimary); + } + + if (!string.IsNullOrEmpty(this.DataEncryptionSecondaryCertFile)) + { + byte[] certBytesSecondary = File.ReadAllBytes(this.DataEncryptionSecondaryCertFile); + secondaryKekCertpfx = Convert.ToBase64String(certBytesSecondary); + } + switch (this.ParameterSetName) { case ASRParameterSets.ByPEObject: @@ -96,7 +134,7 @@ public override void ExecuteSiteRecoveryCmdlet() case ASRParameterSets.ByRPObject: this.StartRpPlannedFailover(); break; - } + } } /// @@ -104,13 +142,13 @@ public override void ExecuteSiteRecoveryCmdlet() /// private void StartPEPlannedFailover() { - PlannedFailoverInputProperties plannedFailoverInputProperties = new PlannedFailoverInputProperties() + var plannedFailoverInputProperties = new PlannedFailoverInputProperties() { FailoverDirection = this.Direction, ProviderSpecificDetails = new ProviderSpecificFailoverInput() }; - PlannedFailoverInput input = new PlannedFailoverInput() + var input = new PlannedFailoverInput() { Properties = plannedFailoverInputProperties }; @@ -136,17 +174,17 @@ private void StartPEPlannedFailover() { if (this.Direction == Constants.PrimaryToRecovery) { - HyperVReplicaAzureFailoverProviderInput failoverInput = new HyperVReplicaAzureFailoverProviderInput() + var failoverInput = new HyperVReplicaAzureFailoverProviderInput() { - PrimaryKekCertificatePfx = null, - SecondaryKekCertificatePfx = null, - VaultLocation = this.GetCurrentValutLocation() + PrimaryKekCertificatePfx = primaryKekCertpfx, + SecondaryKekCertificatePfx = secondaryKekCertpfx, + VaultLocation = this.GetCurrentVaultLocation() }; input.Properties.ProviderSpecificDetails = failoverInput; } else { - HyperVReplicaAzureFailbackProviderInput failbackInput = new HyperVReplicaAzureFailbackProviderInput() + var failbackInput = new HyperVReplicaAzureFailbackProviderInput() { DataSyncOption = this.Optimize == Constants.ForDowntime ? Constants.ForDowntime : Constants.ForSynchronization, //ProviderIdForAlternateRecovery = "", @@ -179,7 +217,7 @@ private void StartRpPlannedFailover() var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); this.RecoveryPlan = new ASRRecoveryPlan(rp.RecoveryPlan); - RecoveryPlanPlannedFailoverInputProperties recoveryPlanPlannedFailoverInputProperties = new RecoveryPlanPlannedFailoverInputProperties() + var recoveryPlanPlannedFailoverInputProperties = new RecoveryPlanPlannedFailoverInputProperties() { FailoverDirection = this.Direction, ProviderSpecificDetails = new List() @@ -194,18 +232,18 @@ private void StartRpPlannedFailover() { if (this.Direction == Constants.PrimaryToRecovery) { - RecoveryPlanHyperVReplicaAzureFailoverInput recoveryPlanHyperVReplicaAzureFailoverInput = new RecoveryPlanHyperVReplicaAzureFailoverInput() + var recoveryPlanHyperVReplicaAzureFailoverInput = new RecoveryPlanHyperVReplicaAzureFailoverInput() { InstanceType = replicationProvider, - PrimaryKekCertificatePfx = null, - SecondaryKekCertificatePfx = null, - VaultLocation = this.GetCurrentValutLocation() + PrimaryKekCertificatePfx = primaryKekCertpfx, + SecondaryKekCertificatePfx = secondaryKekCertpfx, + VaultLocation = this.GetCurrentVaultLocation() }; recoveryPlanPlannedFailoverInputProperties.ProviderSpecificDetails.Add(recoveryPlanHyperVReplicaAzureFailoverInput); } else { - RecoveryPlanHyperVReplicaAzureFailbackInput recoveryPlanHyperVReplicaAzureFailbackInput = new RecoveryPlanHyperVReplicaAzureFailbackInput() + var recoveryPlanHyperVReplicaAzureFailbackInput = new RecoveryPlanHyperVReplicaAzureFailbackInput() { InstanceType = replicationProvider + "Failback", DataSyncOption = this.Optimize == Constants.ForDowntime ? Constants.ForDowntime : Constants.ForSynchronization, @@ -213,10 +251,10 @@ private void StartRpPlannedFailover() }; recoveryPlanPlannedFailoverInputProperties.ProviderSpecificDetails.Add(recoveryPlanHyperVReplicaAzureFailbackInput); } - } + } } - - RecoveryPlanPlannedFailoverInput recoveryPlanPlannedFailoverInput = new RecoveryPlanPlannedFailoverInput() + + var recoveryPlanPlannedFailoverInput = new RecoveryPlanPlannedFailoverInput() { Properties = recoveryPlanPlannedFailoverInputProperties }; diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs index 2a8feff5d108..b483a94f5401 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs @@ -19,6 +19,7 @@ using Microsoft.Azure.Management.SiteRecovery.Models; using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; using System.Collections.Generic; +using System.IO; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -29,7 +30,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery [OutputType(typeof(ASRJob))] public class StartAzureSiteRecoveryTestFailoverJob : SiteRecoveryCmdletBase { - #region Parameters + #region local parameters /// /// Network ID. @@ -57,13 +58,18 @@ public class StartAzureSiteRecoveryTestFailoverJob : SiteRecoveryCmdletBase public string fabricName; /// - /// Gets or sets failover direction for the recovery plan. + /// Primary Kek Cert pfx file. /// - [Parameter(Mandatory = true)] - [ValidateSet( - Constants.PrimaryToRecovery, - Constants.RecoveryToPrimary)] - public string Direction { get; set; } + string primaryKekCertpfx = null; + + /// + /// Secondary Kek Cert pfx file. + /// + string secondaryKekCertpfx = null; + + #endregion local parameters + + #region Parameters /// /// Gets or sets Recovery Plan object. @@ -83,6 +89,13 @@ public class StartAzureSiteRecoveryTestFailoverJob : SiteRecoveryCmdletBase [ValidateNotNullOrEmpty] public ASRProtectionEntity ProtectionEntity { get; set; } + /// + /// Gets or sets failover direction for the recovery plan. + /// + [Parameter(Mandatory = true)] + [ValidateSet(Constants.PrimaryToRecovery, Constants.RecoveryToPrimary)] + public string Direction { get; set; } + /// /// Gets or sets Network. /// @@ -103,6 +116,20 @@ public class StartAzureSiteRecoveryTestFailoverJob : SiteRecoveryCmdletBase [Parameter(ParameterSetName = ASRParameterSets.ByPEObjectWithAzureVMNetworkId, Mandatory = true)] public string AzureVMNetworkId { get; set; } + /// + /// Gets or sets Data encryption certificate file path for failover of Protected Item. + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string DataEncryptionPrimaryCertFile { get; set; } + + /// + /// Gets or sets Data encryption certificate file path for failover of Protected Item. + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string DataEncryptionSecondaryCertFile { get; set; } + #endregion Parameters /// @@ -112,11 +139,23 @@ public override void ExecuteSiteRecoveryCmdlet() { base.ExecuteSiteRecoveryCmdlet(); - switch(this.ParameterSetName) + if (!string.IsNullOrEmpty(this.DataEncryptionPrimaryCertFile)) + { + byte[] certBytesPrimary = File.ReadAllBytes(this.DataEncryptionPrimaryCertFile); + primaryKekCertpfx = Convert.ToBase64String(certBytesPrimary); + } + + if (!string.IsNullOrEmpty(this.DataEncryptionSecondaryCertFile)) + { + byte[] certBytesSecondary = File.ReadAllBytes(this.DataEncryptionSecondaryCertFile); + secondaryKekCertpfx = Convert.ToBase64String(certBytesSecondary); + } + + switch (this.ParameterSetName) { case ASRParameterSets.ByPEObjectWithVMNetwork: case ASRParameterSets.ByRPObjectWithVMNetwork: - this.networkType = "VmNetworkAsInput"; + this.networkType = "VmNetworkAsInput"; this.networkId = this.VMNetwork.ID; break; //case ASRParameterSets.ByPEObjectWithLogicalVMNetwork: @@ -126,12 +165,12 @@ public override void ExecuteSiteRecoveryCmdlet() // break; case ASRParameterSets.ByPEObjectWithAzureVMNetworkId: case ASRParameterSets.ByRPObjectWithAzureVMNetworkId: - this.networkType = "VmNetworkAsInput"; + this.networkType = "VmNetworkAsInput"; this.networkId = this.AzureVMNetworkId; break; case ASRParameterSets.ByPEObject: case ASRParameterSets.ByRPObject: - this.networkType = "NoNetworkAttachAsInput"; + this.networkType = "NoNetworkAttachAsInput"; this.networkId = null; break; } @@ -148,7 +187,7 @@ public override void ExecuteSiteRecoveryCmdlet() this.protectionContainerName = this.ProtectionEntity.ProtectionContainerId; this.fabricName = Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics); this.StartPETestFailover(); - } + } } /// @@ -156,7 +195,7 @@ public override void ExecuteSiteRecoveryCmdlet() /// private void StartPETestFailover() { - TestFailoverInputProperties testFailoverInputProperties = new TestFailoverInputProperties() + var testFailoverInputProperties = new TestFailoverInputProperties() { FailoverDirection = this.Direction, NetworkId = this.networkId, @@ -164,7 +203,7 @@ private void StartPETestFailover() ProviderSpecificDetails = new ProviderSpecificFailoverInput() }; - TestFailoverInput input = new TestFailoverInput() + var input = new TestFailoverInput() { Properties = testFailoverInputProperties }; @@ -189,12 +228,13 @@ private void StartPETestFailover() { if (this.Direction == Constants.PrimaryToRecovery) { - HyperVReplicaAzureFailoverProviderInput failoverInput = new HyperVReplicaAzureFailoverProviderInput() + var failoverInput = new HyperVReplicaAzureFailoverProviderInput() { - PrimaryKekCertificatePfx = null, - SecondaryKekCertificatePfx = null, - VaultLocation = this.GetCurrentValutLocation() + PrimaryKekCertificatePfx = primaryKekCertpfx, + SecondaryKekCertificatePfx = secondaryKekCertpfx, + VaultLocation = this.GetCurrentVaultLocation() }; + input.Properties.ProviderSpecificDetails = failoverInput; } else @@ -217,7 +257,7 @@ private void StartPETestFailover() WriteObject(new ASRJob(jobResponse.Job)); } - /// + /// /// Starts RP Test failover. /// private void StartRpTestFailover() @@ -226,7 +266,7 @@ private void StartRpTestFailover() var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); this.RecoveryPlan = new ASRRecoveryPlan(rp.RecoveryPlan); - RecoveryPlanTestFailoverInputProperties recoveryPlanTestFailoverInputProperties = new RecoveryPlanTestFailoverInputProperties() + var recoveryPlanTestFailoverInputProperties = new RecoveryPlanTestFailoverInputProperties() { FailoverDirection = this.Direction, NetworkId = this.networkId, @@ -243,12 +283,12 @@ private void StartRpTestFailover() { if (this.Direction == Constants.PrimaryToRecovery) { - RecoveryPlanHyperVReplicaAzureFailoverInput recoveryPlanHyperVReplicaAzureFailoverInput = new RecoveryPlanHyperVReplicaAzureFailoverInput() + var recoveryPlanHyperVReplicaAzureFailoverInput = new RecoveryPlanHyperVReplicaAzureFailoverInput() { InstanceType = replicationProvider, - PrimaryKekCertificatePfx = null, - SecondaryKekCertificatePfx = null, - VaultLocation = this.GetCurrentValutLocation() + PrimaryKekCertificatePfx = primaryKekCertpfx, + SecondaryKekCertificatePfx = secondaryKekCertpfx, + VaultLocation = this.GetCurrentVaultLocation() }; recoveryPlanTestFailoverInputProperties.ProviderSpecificDetails.Add(recoveryPlanHyperVReplicaAzureFailoverInput); } @@ -256,10 +296,10 @@ private void StartRpTestFailover() { new ArgumentException(Properties.Resources.UnsupportedDirectionForTFO);// Throw Unsupported Direction Exception } - } + } } - RecoveryPlanTestFailoverInput recoveryPlanTestFailoverInput = new RecoveryPlanTestFailoverInput() + var recoveryPlanTestFailoverInput = new RecoveryPlanTestFailoverInput() { Properties = recoveryPlanTestFailoverInputProperties }; diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs index bb9f72367f51..99f28e751a1f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs @@ -20,6 +20,7 @@ using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Microsoft.Azure.Management.SiteRecovery.Models; using System.Collections.Generic; +using System.IO; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -30,6 +31,8 @@ namespace Microsoft.Azure.Commands.SiteRecovery [OutputType(typeof(ASRJob))] public class StartAzureSiteRecoveryUnplannedFailoverJob : SiteRecoveryCmdletBase { + #region local parameters + /// /// Gets or sets Name of the PE. /// @@ -45,6 +48,18 @@ public class StartAzureSiteRecoveryUnplannedFailoverJob : SiteRecoveryCmdletBase /// public string fabricName; + /// + /// Primary Kek Cert pfx file. + /// + string primaryKekCertpfx = null; + + /// + /// Secondary Kek Cert pfx file. + /// + string secondaryKekCertpfx = null; + + #endregion local parameters + #region Parameters /// @@ -64,20 +79,30 @@ public class StartAzureSiteRecoveryUnplannedFailoverJob : SiteRecoveryCmdletBase /// /// Gets or sets Failover direction for the recovery plan. /// - [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = false)] - [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = true, ValueFromPipeline = false)] - [ValidateSet( - Constants.PrimaryToRecovery, - Constants.RecoveryToPrimary)] + [Parameter(Mandatory = true)] + [ValidateSet(Constants.PrimaryToRecovery, Constants.RecoveryToPrimary)] public string Direction { get; set; } /// /// Gets or sets switch parameter. This is required to PerformSourceSideActions. /// - [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = false, ValueFromPipeline = false)] - [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = false, ValueFromPipeline = false)] + [Parameter] public SwitchParameter PerformSourceSideActions { get; set; } + /// + /// Gets or sets Data encryption certificate file path for failover of Protected Item. + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string DataEncryptionPrimaryCertFile { get; set; } + + /// + /// Gets or sets Data encryption certificate file path for failover of Protected Item. + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string DataEncryptionSecondaryCertFile { get; set; } + #endregion Parameters /// @@ -87,6 +112,18 @@ public override void ExecuteSiteRecoveryCmdlet() { base.ExecuteSiteRecoveryCmdlet(); + if (!string.IsNullOrEmpty(this.DataEncryptionPrimaryCertFile)) + { + byte[] certBytesPrimary = File.ReadAllBytes(this.DataEncryptionPrimaryCertFile); + primaryKekCertpfx = Convert.ToBase64String(certBytesPrimary); + } + + if (!string.IsNullOrEmpty(this.DataEncryptionSecondaryCertFile)) + { + byte[] certBytesSecondary = File.ReadAllBytes(this.DataEncryptionSecondaryCertFile); + secondaryKekCertpfx = Convert.ToBase64String(certBytesSecondary); + } + switch (this.ParameterSetName) { case ASRParameterSets.ByPEObject: @@ -106,14 +143,14 @@ public override void ExecuteSiteRecoveryCmdlet() /// private void StartPEUnplannedFailover() { - UnplannedFailoverInputProperties unplannedFailoverInputProperties = new UnplannedFailoverInputProperties() + var unplannedFailoverInputProperties = new UnplannedFailoverInputProperties() { FailoverDirection = this.Direction, SourceSiteOperations = this.PerformSourceSideActions ? "Required" : "NotRequired", //Required|NotRequired ProviderSpecificDetails = new ProviderSpecificFailoverInput() }; - UnplannedFailoverInput input = new UnplannedFailoverInput() + var input = new UnplannedFailoverInput() { Properties = unplannedFailoverInputProperties }; @@ -138,11 +175,11 @@ private void StartPEUnplannedFailover() { if (this.Direction == Constants.PrimaryToRecovery) { - HyperVReplicaAzureFailoverProviderInput failoverInput = new HyperVReplicaAzureFailoverProviderInput() + var failoverInput = new HyperVReplicaAzureFailoverProviderInput() { - PrimaryKekCertificatePfx = null, - SecondaryKekCertificatePfx = null, - VaultLocation = this.GetCurrentValutLocation() + PrimaryKekCertificatePfx = primaryKekCertpfx, + SecondaryKekCertificatePfx = secondaryKekCertpfx, + VaultLocation = this.GetCurrentVaultLocation() }; input.Properties.ProviderSpecificDetails = failoverInput; } @@ -171,7 +208,7 @@ private void StartRpUnplannedFailover() var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); this.RecoveryPlan = new ASRRecoveryPlan(rp.RecoveryPlan); - RecoveryPlanUnplannedFailoverInputProperties recoveryPlanUnplannedFailoverInputProperties = new RecoveryPlanUnplannedFailoverInputProperties() + var recoveryPlanUnplannedFailoverInputProperties = new RecoveryPlanUnplannedFailoverInputProperties() { FailoverDirection = this.Direction, SourceSiteOperations = this.PerformSourceSideActions ? "Required" : "NotRequired", //Required|NotRequired @@ -181,25 +218,25 @@ private void StartRpUnplannedFailover() foreach (string replicationProvider in this.RecoveryPlan.ReplicationProvider) { if (0 == string.Compare( - replicationProvider, - Constants.HyperVReplicaAzure, - StringComparison.OrdinalIgnoreCase)) + replicationProvider, + Constants.HyperVReplicaAzure, + StringComparison.OrdinalIgnoreCase)) { if (this.Direction == Constants.PrimaryToRecovery) { - RecoveryPlanHyperVReplicaAzureFailoverInput recoveryPlanHyperVReplicaAzureFailoverInput = new RecoveryPlanHyperVReplicaAzureFailoverInput() + var recoveryPlanHyperVReplicaAzureFailoverInput = new RecoveryPlanHyperVReplicaAzureFailoverInput() { InstanceType = replicationProvider, - PrimaryKekCertificatePfx = null, - SecondaryKekCertificatePfx = null, - VaultLocation = this.GetCurrentValutLocation() + PrimaryKekCertificatePfx = primaryKekCertpfx, + SecondaryKekCertificatePfx = secondaryKekCertpfx, + VaultLocation = this.GetCurrentVaultLocation() }; recoveryPlanUnplannedFailoverInputProperties.ProviderSpecificDetails.Add(recoveryPlanHyperVReplicaAzureFailoverInput); } - } + } } - RecoveryPlanUnplannedFailoverInput recoveryPlanUnplannedFailoverInput = new RecoveryPlanUnplannedFailoverInput() + var recoveryPlanUnplannedFailoverInput = new RecoveryPlanUnplannedFailoverInput() { Properties = recoveryPlanUnplannedFailoverInputProperties }; From 6247fdf279f9079db97dbf984c979ab5313e5f88 Mon Sep 17 00:00:00 2001 From: sriramvu Date: Mon, 25 Jan 2016 17:39:21 +0530 Subject: [PATCH 17/46] Vault settings file to have ASRVaultCreds as our DRA registration expects --- .../Common/PSRecoveryServicesClient.cs | 4 +-- ...RecoveryServicesVaultExtendedInfoClient.cs | 18 +++++----- .../Models/PSContracts.cs | 10 +++--- .../Utilities/Utilities.cs | 2 +- ...zureRMRecoveryServicesVaultSettingsFile.cs | 4 +-- ...mportAzureSiteRecoveryVaultSettingsFile.cs | 35 +++---------------- 6 files changed, 23 insertions(+), 50 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesClient.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesClient.cs index e72201db40ce..cf5051e148aa 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesClient.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesClient.cs @@ -64,7 +64,7 @@ public RecoveryServicesManagementClient GetRecoveryServicesClient "Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1401:FieldsMustBePrivate", Justification = "For Resource Credentials.")] - public static ARSVaultCreds arsVaultCreds = new ARSVaultCreds(); + public static ASRVaultCreds arsVaultCreds = new ASRVaultCreds(); /// /// Recovery Services client. @@ -100,7 +100,7 @@ public PSRecoveryServicesClient(IAzureProfile azureProfile) : appSettings.Settings["ProviderNamespace"].Value; } - Utilities.UpdateCurrentVaultContext(new ARSVaultCreds() + Utilities.UpdateCurrentVaultContext(new ASRVaultCreds() { ResourceNamespace = resourceNamespace, ARMResourceType = resourceType diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultExtendedInfoClient.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultExtendedInfoClient.cs index d3a1d50bf63a..51725d3db1d2 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultExtendedInfoClient.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultExtendedInfoClient.cs @@ -80,15 +80,15 @@ public async Task UpdateVaultCertificate(CertificateA /// certificate to be uploaded /// vault object /// credential object - public ARSVaultCreds GenerateVaultCredential(X509Certificate2 managementCert, ARSVault vault, ASRSite site) + public ASRVaultCreds GenerateVaultCredential(X509Certificate2 managementCert, ARSVault vault, ASRSite site) { - ARSVaultCreds currentVaultContext = PSRecoveryServicesClient.arsVaultCreds; + ASRVaultCreds currentVaultContext = PSRecoveryServicesClient.arsVaultCreds; string resourceProviderNamespace = string.Empty; string resourceType = string.Empty; Utilities.GetResourceProviderNamespaceAndType(vault.ID, out resourceProviderNamespace, out resourceType); // Update vault settings with the working vault to generate file - Utilities.UpdateCurrentVaultContext(new ARSVaultCreds() + Utilities.UpdateCurrentVaultContext(new ASRVaultCreds() { ResourceGroupName = vault.ResouceGroupName, ResourceName = vault.Name, @@ -112,7 +112,7 @@ public ARSVaultCreds GenerateVaultCredential(X509Certificate2 managementCert, AR acsDetails = uploadCertificate.Result; channelIntegrityKey = getChannelIntegrityKey.Result; - ARSVaultCreds arsVaultCreds = this.GenerateCredentialObject( + ASRVaultCreds arsVaultCreds = this.GenerateCredentialObject( managementCert, acsDetails, channelIntegrityKey, @@ -130,12 +130,12 @@ public ARSVaultCreds GenerateVaultCredential(X509Certificate2 managementCert, AR /// /// vault object /// credential object - public ARSVaultCreds ChangeVaultContext(ARSVault vault) + public ASRVaultCreds ChangeVaultContext(ARSVault vault) { string resourceProviderNamespace = string.Empty; string resourceType = string.Empty; Utilities.GetResourceProviderNamespaceAndType(vault.ID, out resourceProviderNamespace, out resourceType); - Utilities.UpdateCurrentVaultContext(new ARSVaultCreds() + Utilities.UpdateCurrentVaultContext(new ASRVaultCreds() { ResourceGroupName = vault.ResouceGroupName, ResourceName = vault.Name, @@ -148,7 +148,7 @@ public ARSVaultCreds ChangeVaultContext(ARSVault vault) getChannelIntegrityKey.Wait(); // Update vault settings along with Channel integrity key - Utilities.UpdateCurrentVaultContext(new ARSVaultCreds() + Utilities.UpdateCurrentVaultContext(new ASRVaultCreds() { ResourceGroupName = vault.ResouceGroupName, ResourceName = vault.Name, @@ -253,7 +253,7 @@ private ResourceExtendedInformation CreateVaultExtendedInformation() /// vault object /// site object /// vault credential object - private ARSVaultCreds GenerateCredentialObject(X509Certificate2 managementCert, UploadCertificateResponse acsDetails, string channelIntegrityKey, ARSVault vault, ASRSite site) + private ASRVaultCreds GenerateCredentialObject(X509Certificate2 managementCert, UploadCertificateResponse acsDetails, string channelIntegrityKey, ARSVault vault, ASRSite site) { string serializedCertifivate = Convert.ToBase64String(managementCert.Export(X509ContentType.Pfx)); @@ -262,7 +262,7 @@ private ARSVaultCreds GenerateCredentialObject(X509Certificate2 managementCert, string resourceProviderNamespace = string.Empty; string resourceType = string.Empty; Utilities.GetResourceProviderNamespaceAndType(vault.ID, out resourceProviderNamespace, out resourceType); - ARSVaultCreds vaultCreds = new ARSVaultCreds( + ASRVaultCreds vaultCreds = new ASRVaultCreds( vault.SubscriptionId, vault.Name, serializedCertifivate, diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs index 42376a10c813..63de277de202 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs @@ -362,19 +362,19 @@ public VaultCreds(string subscriptionId, string resourceName, string managementC "Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1402:FileMayOnlyContainASingleClass", Justification = "Keeping all contracts together.")] - public class ARSVaultCreds : VaultCreds + public class ASRVaultCreds : VaultCreds { #region Constructores /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - public ARSVaultCreds() + public ASRVaultCreds() { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// subscription Id /// resource name @@ -384,7 +384,7 @@ public ARSVaultCreds() /// cloud service name /// custom site Id /// custom site name - public ARSVaultCreds( + public ASRVaultCreds( string subscriptionId, string resourceName, string managementCert, diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Utilities/Utilities.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Utilities/Utilities.cs index 5a78f03c45c3..c84f05689f2d 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Utilities/Utilities.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Utilities/Utilities.cs @@ -103,7 +103,7 @@ public static string WriteToFile(T fileContent, string filePath, string fileN /// Updates current Vault context. /// /// ARS Vault credentials - public static void UpdateCurrentVaultContext(ARSVaultCreds arsVaultCreds) + public static void UpdateCurrentVaultContext(ASRVaultCreds arsVaultCreds) { object updateVaultContextOneAtATime = new object(); lock (updateVaultContextOneAtATime) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/GetAzureRMRecoveryServicesVaultSettingsFile.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/GetAzureRMRecoveryServicesVaultSettingsFile.cs index 6fc228227359..f480a9bab97f 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/GetAzureRMRecoveryServicesVaultSettingsFile.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/GetAzureRMRecoveryServicesVaultSettingsFile.cs @@ -106,7 +106,7 @@ private void GetVaultSettingsFile() } // Generate file. - ARSVaultCreds vaultCreds = RecoveryServicesClient.GenerateVaultCredential( + ASRVaultCreds vaultCreds = RecoveryServicesClient.GenerateVaultCredential( cert, this.Vault, site); @@ -117,7 +117,7 @@ private void GetVaultSettingsFile() // write the content to a file. VaultSettingsFilePath output = new VaultSettingsFilePath() { - FilePath = Utilities.WriteToFile(vaultCreds, filePath, fileName) + FilePath = Utilities.WriteToFile(vaultCreds, filePath, fileName) }; // print the path to the user. diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs index a80ede5c5190..3c85409e1178 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/ImportAzureSiteRecoveryVaultSettingsFile.cs @@ -53,20 +53,19 @@ public override void ExecuteSiteRecoveryCmdlet() this.WriteVerbose("Vault Settings File path: " + this.Path); ASRVaultCreds asrVaultCreds = null; - ARSVaultCreds arsVaultCreds = null; if (File.Exists(this.Path)) { try { - var serializer = new DataContractSerializer(typeof(ARSVaultCreds)); + var serializer = new DataContractSerializer(typeof(ASRVaultCreds)); using (var s = new FileStream( this.Path, FileMode.Open, FileAccess.Read, FileShare.Read)) { - arsVaultCreds = (ARSVaultCreds)serializer.ReadObject(s); + asrVaultCreds = (ASRVaultCreds)serializer.ReadObject(s); } } catch (XmlException xmlException) @@ -76,34 +75,8 @@ public override void ExecuteSiteRecoveryCmdlet() } catch (SerializationException serializationException) { - try - { - // moved here as ASR Vault is short lived - var serializer = new DataContractSerializer(typeof(ASRVaultCreds)); - using (var s = new FileStream( - this.Path, - FileMode.Open, - FileAccess.Read, - FileShare.Read)) - { - asrVaultCreds = (ASRVaultCreds)serializer.ReadObject(s); - } - } - catch - { - throw new SerializationException( - string.Format(Properties.Resources.InvalidXml, serializationException)); - } - } - if (null == asrVaultCreds) - { - // Copy ars to asr - asrVaultCreds = new ASRVaultCreds(); - asrVaultCreds.ResourceName = arsVaultCreds.ResourceName; - asrVaultCreds.ResourceGroupName = arsVaultCreds.ResourceGroupName; - asrVaultCreds.ResourceNamespace = arsVaultCreds.ResourceNamespace; - asrVaultCreds.ARMResourceType = arsVaultCreds.ARMResourceType; - asrVaultCreds.ChannelIntegrityKey = arsVaultCreds.ChannelIntegrityKey; + throw new SerializationException( + string.Format(Properties.Resources.InvalidXml, serializationException)); } } else From 1c94d69bed35be6fcc5bac1e2036c71c998c6694 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Thu, 28 Jan 2016 15:49:28 +0530 Subject: [PATCH 18/46] Indentation support in generated RP file --- .../Commands.RecoveryServices.Test.csproj | 1 - .../Commands.SiteRecovery.Test.csproj | 1 - .../RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs | 4 ++-- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj index 0bcf79baf686..d63b71d58332 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj @@ -135,7 +135,6 @@ - PreserveNewest diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj index b564ee389ea6..00332c50b80f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj @@ -131,7 +131,6 @@ - PreserveNewest diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs index e78c35e47608..f314c2953d37 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs @@ -167,9 +167,9 @@ private void GetRecoveryPlanFile(RecoveryPlan recoveryPlan) string fullFileName = System.IO.Path.Combine(filePath, fileName); using (System.IO.StreamWriter file = new System.IO.StreamWriter(@fullFileName, false)) { - string json = JsonConvert.SerializeObject(recoveryPlan); + string json = JsonConvert.SerializeObject(recoveryPlan, Formatting.Indented); file.WriteLine(json); - //this.WriteObject(string.Format(Properties.Resources.RPJSONPath, recoveryPlan.Name, fullFileName)); + this.WriteObject(string.Format(Properties.Resources.RPJSONPath, recoveryPlan.Name, fullFileName)); } } From 502707339b1d9d716df0477add8922e74cc5b4ee Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Fri, 29 Jan 2016 11:58:47 +0530 Subject: [PATCH 19/46] Adding polymorphic deserialization support for Recovery Plan --- .../Models/PSConstants.cs | 5 + .../UpdateAzureSiteRecoveryRecoveryPlan.cs | 5 +- .../Utilities/Utilities.cs | 133 ++++++++++++++++++ 3 files changed, 141 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs index fd211ac9f321..12b487778577 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs @@ -326,6 +326,11 @@ public static class Constants /// Group Type: Failover /// public const string Failover = "Failover"; + + /// + /// JSON field: InstanceType + /// + public const string InstanceType = "InstanceType"; } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs index 0e01187c5a36..d79965bc8c2b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs @@ -67,9 +67,9 @@ public override void ExecuteSiteRecoveryCmdlet() RecoveryPlan recoveryPlan = null; using (System.IO.StreamReader file = new System.IO.StreamReader(filePath)) { - recoveryPlan = JsonConvert.DeserializeObject(file.ReadToEnd()); + recoveryPlan = JsonConvert.DeserializeObject(file.ReadToEnd(), new RecoveryPlanActionDetailsConverter()); } - UpdateReplicationPlan(recoveryPlan); + UpdateReplicationPlan(recoveryPlan); break; } } @@ -136,5 +136,6 @@ private void UpdateReplicationPlan(string recoveryPlanName, UpdateRecoveryPlanIn WriteObject(new ASRJob(jobResponse.Job)); } + } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs index 9b59622e878d..d4d271f9722d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Utilities/Utilities.cs @@ -19,6 +19,9 @@ using System.Security.Cryptography; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using System.Collections.Generic; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using Microsoft.Azure.Management.SiteRecovery.Models; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -278,4 +281,134 @@ public static string GetVaultArmId(this string data) data.UnFormatArmId(ARMResourceIdPaths.SRSArmUrlPattern)); } } + + /// + /// Custom Convertor for deserializing JSON + /// + /// + public abstract class JsonCreationConverter : JsonConverter + { + /// + /// Gets a value indicating whether this Newtonsoft.Json.JsonConverter can write JSON + /// + public override bool CanWrite + { + get + { + return false; + } + } + + /// + /// Determines whether this instance can convert the specified object type. + /// + /// Type of the object. + /// true if this instance can convert the specified object type; otherwise, false. + public override bool CanConvert(Type objectType) + { + return typeof(T).IsAssignableFrom(objectType); + } + + /// + /// Reads the JSON representation of the object. + /// + /// The Newtonsoft.Json.JsonReader to read from. + /// Type of the object. + /// The existing value of object being read. + /// The calling serializer. + /// the type of object + public override object ReadJson( + JsonReader reader, + Type objectType, + object existingValue, + JsonSerializer serializer) + { + if (reader.TokenType == JsonToken.Null) + { + return null; + } + + // Load JObject from stream + JObject jObject = JObject.Load(reader); + + // Create target object based on JObject + T target = this.Create(objectType, jObject); + + // Populate the object properties + serializer.Populate(jObject.CreateReader(), target); + + return target; + } + + /// + /// Writes the JSON representation of the object. + /// + /// The Newtonsoft.Json.JsonWriter to write to. + /// The value. + /// The calling serializer. + public override void WriteJson( + JsonWriter writer, + object value, + JsonSerializer serializer) + { + throw new NotImplementedException(); + } + + /// + /// Create an instance of objectType, based on properties in the JSON object + /// + /// Type of the object. + /// Contents of JSON object that will be deserialized. + /// Returns object of type. + protected abstract T Create(Type objectType, JObject jObject); + } + + /// + /// Custom Convertor for deserializing RecoveryPlanActionDetails(RecoveryPlan) object + /// + [JsonConverter(typeof(RecoveryPlanActionDetails))] + public class RecoveryPlanActionDetailsConverter : JsonCreationConverter + { + /// + /// Creates recovery plan action custom details. + /// + /// Object type. + /// JSON object that will be deserialized. + /// Returns recovery plan action custom details. + protected override RecoveryPlanActionDetails Create( + Type objectType, + JObject jObject) + { + RecoveryPlanActionDetails outputType = null; + RecoveryPlanActionDetailsType actionType = + (RecoveryPlanActionDetailsType)Enum.Parse(typeof(RecoveryPlanActionDetailsType), jObject.Value(Constants.InstanceType)); + + switch (actionType) + { + case RecoveryPlanActionDetailsType.AutomationRunbookActionDetails: + outputType = new RecoveryPlanAutomationRunbookActionDetails(); + break; + + case RecoveryPlanActionDetailsType.ManualActionDetails: + outputType = new RecoveryPlanManualActionDetails(); + break; + + case RecoveryPlanActionDetailsType.ScriptActionDetails: + outputType = new RecoveryPlanScriptActionDetails(); + break; + } + + return outputType; + } + } + + /// + /// Recovery Plan Action Types + /// + public enum RecoveryPlanActionDetailsType + { + AutomationRunbookActionDetails, + ManualActionDetails, + ScriptActionDetails + }; } From 11a3a2e415f710a199e7c313388564e24bf7ed1c Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Tue, 2 Feb 2016 12:25:31 +0530 Subject: [PATCH 20/46] minor improvizations --- .../Policy/GetAzureSiteRecoveryPolicy.cs | 8 +++-- .../Properties/Resources.Designer.cs | 9 ++++++ .../Properties/Resources.resx | 3 ++ ...GetAzureSiteRecoveryProtectionContainer.cs | 22 ++++++++------ .../GetAzureSiteRecoveryProtectionEntity.cs | 22 ++++++++++---- .../GetAzureSiteRecoveryRecoveryPlan.cs | 17 +++++------ .../Site/GetAzureSiteRecoverySite.cs | 29 +++++++++++++------ .../VM/GetAzureSiteRecoveryVM.cs | 24 ++++++++++----- 8 files changed, 91 insertions(+), 43 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs index 6bc4201d74c4..42dfdb11acec 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs @@ -78,7 +78,9 @@ private void GetByFriendlyName() { if (0 == string.Compare(this.FriendlyName, policy.Properties.FriendlyName, true)) { - this.WritePolicy(policy); + var policyByName = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(policy.Name).Policy; + this.WritePolicy(policyByName); + found = true; } } @@ -107,7 +109,9 @@ private void GetByName() { if (0 == string.Compare(this.Name, policy.Name, true)) { - this.WritePolicy(policy); + var policyByName = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(policy.Name).Policy; + this.WritePolicy(policyByName); + found = true; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs index c488361c6893..c483dec36656 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs @@ -133,6 +133,15 @@ internal static string DisableProtectionWhatIfMessage { } } + /// + /// Looks up a localized string similar to File "{0}" already exists. Specify a different name or path.. + /// + internal static string FileAlreadyExists { + get { + return ResourceManager.GetString("FileAlreadyExists", resourceCulture); + } + } + /// /// Looks up a localized string similar to File {0} Not Found. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx index 278b89f4e19a..01a0e22d774b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx @@ -319,4 +319,7 @@ Please provide a storage account with the same location as that of the vault. File {0} Not Found + + File "{0}" already exists. Specify a different name or path. + \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs index 3f0d2f95fcec..992a3ba9f49c 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs @@ -89,15 +89,17 @@ private void GetByFriendlyName() ProtectionContainer protectionContainer in protectionContainerListResponse.ProtectionContainers) { - if (0 == string.Compare(this.FriendlyName, protectionContainer.Properties.FriendlyName, true)) + if (0 == string.Compare(this.FriendlyName, protectionContainer.Properties.FriendlyName, StringComparison.OrdinalIgnoreCase)) { - this.WriteProtectionContainer(protectionContainer); + var protectionContainerByName = RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainer(fabric.Name, protectionContainer.Name).ProtectionContainer; + this.WriteProtectionContainer(protectionContainerByName); + found = true; // break; //We can break if we are sure that we have clouds with unique name across fabrics } } } - + if (!found) { throw new InvalidOperationException( @@ -131,9 +133,11 @@ private void GetByName() ProtectionContainer protectionContainer in protectionContainerListResponse.ProtectionContainers) { - if (0 == string.Compare(this.Name, protectionContainer.Name, true)) + if (0 == string.Compare(this.Name, protectionContainer.Name, StringComparison.OrdinalIgnoreCase)) { - this.WriteProtectionContainer(protectionContainer); + var protectionContainerByName = RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainer(fabric.Name, protectionContainer.Name).ProtectionContainer; + this.WriteProtectionContainer(protectionContainerByName); + found = true; // break; //We can break if we are sure that we have clouds with unique name across fabrics } @@ -169,7 +173,7 @@ private void GetAll() RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainer(fabric.Name); this.WriteProtectionContainers(protectionContainerListResponse.ProtectionContainers); - } + } } /// @@ -177,7 +181,7 @@ private void GetAll() /// /// List of Protection Containers private void WriteProtectionContainers(IList protectionContainers) - { + { List asrProtectionContainers = new List(); foreach (ProtectionContainer protectionContainer in protectionContainers) @@ -188,9 +192,9 @@ private void WriteProtectionContainers(IList protectionCont foreach (ProtectionContainerMapping protectionContainerMapping in protectionContainerMappingListResponse.ProtectionContainerMappings) { PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(protectionContainerMapping.Properties.PolicyId, ARMResourceTypeConstants.ReplicationPolicies)); - availablePolicies.Add(new ASRPolicy(policyResponse.Policy)); + availablePolicies.Add(new ASRPolicy(policyResponse.Policy)); } - + asrProtectionContainers.Add(new ASRProtectionContainer(protectionContainer, availablePolicies)); } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs index c6aafd76a1ed..ecb356582893 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs @@ -84,11 +84,16 @@ private void GetByFriendlyName() ProtectableItemListResponse protectableItemListResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), this.ProtectionContainer.Name); - ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => t.Properties.FriendlyName.CompareTo(this.FriendlyName) == 0); + ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => string.Compare(t.Properties.FriendlyName, this.FriendlyName, StringComparison.OrdinalIgnoreCase) == 0); if (protectableItem != null) { - WriteProtectionEntity(protectableItem); + ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( + Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), + this.ProtectionContainer.Name, + protectableItem.Name); + WriteProtectionEntity(protectableItemResponse.ProtectableItem); + found = true; } @@ -109,14 +114,19 @@ private void GetByName() { bool found = false; - ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( + ProtectableItemListResponse protectableItemListResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionContainer.Name, - this.Name); + this.ProtectionContainer.Name); + ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => string.Compare(t.Name, this.Name, StringComparison.OrdinalIgnoreCase) == 0); - if (protectableItemResponse.ProtectableItem != null) + if (protectableItem != null) { + ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( + Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), + this.ProtectionContainer.Name, + protectableItem.Name); WriteProtectionEntity(protectableItemResponse.ProtectableItem); + found = true; } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs index f314c2953d37..b00908253fc9 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs @@ -85,15 +85,15 @@ private void GetByFriendlyName() foreach (RecoveryPlan recoveryPlan in recoveryPlanListResponse.RecoveryPlans) { - if (0 == string.Compare(this.FriendlyName, recoveryPlan.Properties.FriendlyName, true)) + if (0 == string.Compare(this.FriendlyName, recoveryPlan.Properties.FriendlyName, StringComparison.OrdinalIgnoreCase)) { var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(recoveryPlan.Name).RecoveryPlan; + this.WriteRecoveryPlan(rp); if (!string.IsNullOrEmpty(this.Path)) { GetRecoveryPlanFile(rp); } - this.WriteRecoveryPlan(rp); found = true; } } @@ -119,15 +119,15 @@ private void GetByName() foreach (RecoveryPlan recoveryPlan in recoveryPlanListResponse.RecoveryPlans) { - if (0 == string.Compare(this.Name, recoveryPlan.Name, true)) + if (0 == string.Compare(this.Name, recoveryPlan.Name, StringComparison.OrdinalIgnoreCase)) { var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(recoveryPlan.Name).RecoveryPlan; + this.WriteRecoveryPlan(rp); if (!string.IsNullOrEmpty(this.Path)) { GetRecoveryPlanFile(rp); } - this.WriteRecoveryPlan(rp); found = true; } } @@ -157,19 +157,16 @@ private void GetRecoveryPlanFile(RecoveryPlan recoveryPlan) { recoveryPlan = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(recoveryPlan.Name).RecoveryPlan; - string filePath = string.IsNullOrEmpty(this.Path) ? Utilities.GetDefaultPath() : this.Path; - if(!Directory.Exists(filePath)) + if (string.IsNullOrEmpty(this.Path) || !Directory.Exists(System.IO.Path.GetDirectoryName(this.Path))) { - throw new DirectoryNotFoundException(string.Format(Properties.Resources.DirectoryNotFound, filePath)); + throw new DirectoryNotFoundException(string.Format(Properties.Resources.DirectoryNotFound, System.IO.Path.GetDirectoryName(this.Path))); } - string fileName = string.Format("{0}_{1}.json", recoveryPlan.Name, DateTime.UtcNow.ToString("yyyy-MM-ddTHH-mm-ss")); - string fullFileName = System.IO.Path.Combine(filePath, fileName); + string fullFileName = this.Path; using (System.IO.StreamWriter file = new System.IO.StreamWriter(@fullFileName, false)) { string json = JsonConvert.SerializeObject(recoveryPlan, Formatting.Indented); file.WriteLine(json); - this.WriteObject(string.Format(Properties.Resources.RPJSONPath, recoveryPlan.Name, fullFileName)); } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/GetAzureSiteRecoverySite.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/GetAzureSiteRecoverySite.cs index 777e4ccaf06f..37d2651c7df1 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/GetAzureSiteRecoverySite.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/GetAzureSiteRecoverySite.cs @@ -82,9 +82,11 @@ private void GetByFriendlyName() if (String.Compare(fabric.Properties.CustomDetails.InstanceType, Constants.HyperVSite) != 0) continue; - if (0 == string.Compare(this.FriendlyName, fabric.Properties.FriendlyName, true)) + if (0 == string.Compare(this.FriendlyName, fabric.Properties.FriendlyName, StringComparison.OrdinalIgnoreCase)) { - this.WriteSite(fabric); + var fabricByName = RecoveryServicesClient.GetAzureSiteRecoveryFabric(fabric.Name).Fabric; + this.WriteSite(fabricByName); + found = true; } } @@ -104,21 +106,30 @@ private void GetByFriendlyName() /// private void GetByName() { - FabricResponse fabricResponse = - RecoveryServicesClient.GetAzureSiteRecoveryFabric(this.Name); - bool found = false; + FabricListResponse fabricListResponse = + RecoveryServicesClient.GetAzureSiteRecoveryFabric(); - if (fabricResponse != null) + bool found = false; + foreach (Fabric fabric in fabricListResponse.Fabrics) { - this.WriteSite(fabricResponse.Fabric); - found = true; + // Do not process for fabrictype other than HyperVSite + if (String.Compare(fabric.Properties.CustomDetails.InstanceType, Constants.HyperVSite) != 0) + continue; + + if (0 == string.Compare(this.Name, fabric.Name, StringComparison.OrdinalIgnoreCase)) + { + var fabricByName = RecoveryServicesClient.GetAzureSiteRecoveryFabric(fabric.Name).Fabric; + this.WriteSite(fabricByName); + + found = true; + } } if (!found) { throw new InvalidOperationException( string.Format( - Properties.Resources.ServerNotFound, + Properties.Resources.SiteNotFound, this.Name, PSRecoveryServicesClient.asrVaultCreds.ResourceName)); } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs index 5e04a8d18b13..42680d088f94 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs @@ -84,11 +84,16 @@ private void GetByFriendlyName() ProtectableItemListResponse protectableItemListResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), this.ProtectionContainer.Name); - ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => t.Properties.FriendlyName.CompareTo(this.FriendlyName) == 0); + ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => string.Compare(t.Properties.FriendlyName, this.FriendlyName, StringComparison.OrdinalIgnoreCase) == 0); if (protectableItem != null) { - WriteProtectionEntity(protectableItem); + ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( + Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), + this.ProtectionContainer.Name, + protectableItem.Name); + WriteProtectionEntity(protectableItemResponse.ProtectableItem); + found = true; } @@ -97,7 +102,7 @@ private void GetByFriendlyName() throw new InvalidOperationException( string.Format( Properties.Resources.ProtectionEntityNotFound, - this.Name, + this.FriendlyName, this.ProtectionContainer.FriendlyName)); } } @@ -109,14 +114,19 @@ private void GetByName() { bool found = false; - ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( + ProtectableItemListResponse protectableItemListResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionContainer.Name, - this.Name); + this.ProtectionContainer.Name); + ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => string.Compare(t.Name, this.Name, StringComparison.OrdinalIgnoreCase) == 0); - if (protectableItemResponse.ProtectableItem != null) + if (protectableItem != null) { + ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( + Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), + this.ProtectionContainer.Name, + protectableItem.Name); WriteProtectionEntity(protectableItemResponse.ProtectableItem); + found = true; } From 1b22d08da3aa252b3a1c9fa7f0c535173ea7e434 Mon Sep 17 00:00:00 2001 From: vijaynar Date: Wed, 3 Feb 2016 14:34:50 +0530 Subject: [PATCH 21/46] Protection Container perf fix: -Only calling protection container mapping if cloud is paired. -Caching policies -Sorting container names by friendly names Tested with same data. Call is finishing in 10-12 seconds instead of 84 secs. --- ...PSSiteRecoveryProtectionContainerClient.cs | 9 +++ ...GetAzureSiteRecoveryProtectionContainer.cs | 70 +++++++++++++------ 2 files changed, 58 insertions(+), 21 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectionContainerClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectionContainerClient.cs index cdf644d60ad5..da5cc830c8b3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectionContainerClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectionContainerClient.cs @@ -23,6 +23,15 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// public partial class PSRecoveryServicesClient { + /// + /// Gets Azure Site Recovery Protection Container. + /// + /// Protection Container list response + public ProtectionContainerListResponse GetAzureSiteRecoveryProtectionContainer() + { + return this.GetSiteRecoveryClient().ProtectionContainer.ListAll(this.GetRequestHeaders()); + } + /// /// Gets Azure Site Recovery Protection Container. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs index 992a3ba9f49c..7cc86ab1cd08 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionContainer/GetAzureSiteRecoveryProtectionContainer.cs @@ -159,21 +159,8 @@ ProtectionContainer protectionContainer in /// private void GetAll() { - ProtectionContainerListResponse protectionContainerListResponse; - - FabricListResponse fabricListResponse = RecoveryServicesClient.GetAzureSiteRecoveryFabric(); - - foreach (Fabric fabric in fabricListResponse.Fabrics) - { - // Do not process for fabrictype other than Vmm|HyperVSite - if (String.Compare(fabric.Properties.CustomDetails.InstanceType, Constants.VMM) != 0 && String.Compare(fabric.Properties.CustomDetails.InstanceType, Constants.HyperVSite) != 0) - continue; - - protectionContainerListResponse = - RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainer(fabric.Name); - - this.WriteProtectionContainers(protectionContainerListResponse.ProtectionContainers); - } + ProtectionContainerListResponse protectionContainerListResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainer(); + this.WriteProtectionContainers(protectionContainerListResponse.ProtectionContainers); } /// @@ -183,21 +170,60 @@ private void GetAll() private void WriteProtectionContainers(IList protectionContainers) { List asrProtectionContainers = new List(); + Dictionary policyCache = new Dictionary(); foreach (ProtectionContainer protectionContainer in protectionContainers) { List availablePolicies = new List(); - ProtectionContainerMappingListResponse protectionContainerMappingListResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainerMapping(Utilities.GetValueFromArmId(protectionContainer.Id, ARMResourceTypeConstants.ReplicationFabrics), protectionContainer.Name); - foreach (ProtectionContainerMapping protectionContainerMapping in protectionContainerMappingListResponse.ProtectionContainerMappings) + // Check if container is paired then fetch policy details. + if (0 == string.Compare(protectionContainer.Properties.PairingStatus, "paired", StringComparison.OrdinalIgnoreCase)) { - PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(protectionContainerMapping.Properties.PolicyId, ARMResourceTypeConstants.ReplicationPolicies)); - availablePolicies.Add(new ASRPolicy(policyResponse.Policy)); + // Get all Protection Container Mappings for specific container to find out the policies attached to container. + ProtectionContainerMappingListResponse protectionContainerMappingListResponse = + RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainerMapping( + Utilities.GetValueFromArmId(protectionContainer.Id, ARMResourceTypeConstants.ReplicationFabrics), + protectionContainer.Name); + + // TODO: This call can be made parallel to speed up processing if required later. + foreach (ProtectionContainerMapping protectionContainerMapping in protectionContainerMappingListResponse.ProtectionContainerMappings) + { + string policyName = Utilities.GetValueFromArmId(protectionContainerMapping.Properties.PolicyId, ARMResourceTypeConstants.ReplicationPolicies).ToLower(); + ASRPolicy asrPolicy = null; + + if (policyCache.ContainsKey(policyName)) + { + asrPolicy = policyCache[policyName]; + } + else + { + // Get all policies and fill up the dictionary once. + PolicyListResponse policyListResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(); + foreach (Policy policy in policyListResponse.Policies) + { + asrPolicy = new ASRPolicy(policy); + try + { + policyCache.Add(asrPolicy.Name.ToLower(), asrPolicy); + } + catch (ArgumentException) + { + // In case of item already exist eat the exception. + } + } + + // Get the policy from dictionary now. + asrPolicy = policyCache[policyName]; + } + + availablePolicies.Add(asrPolicy); + } } asrProtectionContainers.Add(new ASRProtectionContainer(protectionContainer, availablePolicies)); } + asrProtectionContainers.Sort((x, y) => x.FriendlyName.CompareTo(y.FriendlyName)); this.WriteObject(asrProtectionContainers, true); } @@ -209,10 +235,12 @@ private void WriteProtectionContainer(ProtectionContainer protectionContainer) { List availablePolicies = new List(); - ProtectionContainerMappingListResponse protectionContainerMappingListResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainerMapping(Utilities.GetValueFromArmId(protectionContainer.Id, ARMResourceTypeConstants.ReplicationFabrics), protectionContainer.Name); + ProtectionContainerMappingListResponse protectionContainerMappingListResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainerMapping( + Utilities.GetValueFromArmId(protectionContainer.Id, ARMResourceTypeConstants.ReplicationFabrics), protectionContainer.Name); foreach (ProtectionContainerMapping protectionContainerMapping in protectionContainerMappingListResponse.ProtectionContainerMappings) { - PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(protectionContainerMapping.Properties.PolicyId, ARMResourceTypeConstants.ReplicationPolicies)); + PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy( + Utilities.GetValueFromArmId(protectionContainerMapping.Properties.PolicyId, ARMResourceTypeConstants.ReplicationPolicies)); availablePolicies.Add(new ASRPolicy(policyResponse.Policy)); } From 85ba12e09d8e12356fda9da63e15753f8595c324 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Wed, 3 Feb 2016 17:33:47 +0530 Subject: [PATCH 22/46] Taking Feedbacks --- ...RecoveryReplicationProtectedItemsClient.cs | 32 ++++++++++++++++ .../Models/PSRecoveryPlanObjects.cs | 38 +++++++++++++++---- ...tartAzureSiteRecoveryPlannedFailoverJob.cs | 3 +- .../StartAzureSiteRecoveryTestFailoverJob.cs | 3 +- ...rtAzureSiteRecoveryUnPlannedFailoverJob.cs | 3 +- .../EditAzureSiteRecoveryRecoveryPlan.cs | 13 ++++--- .../GetAzureSiteRecoveryRecoveryPlan.cs | 13 ++++++- .../RemoveAzureSiteRecoveryRecoveryPlan.cs | 17 +++++++-- .../UpdateAzureSiteRecoveryRecoveryPlan.cs | 3 +- 9 files changed, 100 insertions(+), 25 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs index fbe531b7ea05..2bd68f976000 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs @@ -16,6 +16,7 @@ using Microsoft.Azure.Management.SiteRecovery; using Microsoft.Azure.Management.SiteRecovery.Models; using System.Threading.Tasks; +using System.Collections.Generic; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -38,6 +39,37 @@ public ReplicationProtectedItemListResponse GetAzureSiteRecoveryReplicationProte .ReplicationProtectedItem.List(fabricName, protectionContainerName, this.GetRequestHeaders()); } + /// + /// Retrieves Protected Items. + /// + /// Recovery Plan Name + /// Source Fabric Name + /// Protection entity list response + public ReplicationProtectedItemListResponse GetAzureSiteRecoveryReplicationProtectedItemInRP(string recoveryPlanName) + { + ReplicationProtectedItemListResponse output = new ReplicationProtectedItemListResponse(); + List replicationProtectedItems = new List(); + + var protectedItemsQueryParameter = new ProtectedItemsQueryParameter() + { + RecoveryPlanName = recoveryPlanName + }; + ReplicationProtectedItemListResponse response = this + .GetSiteRecoveryClient() + .ReplicationProtectedItem.ListAll(null, protectedItemsQueryParameter, this.GetRequestHeaders()); + replicationProtectedItems.AddRange(response.ReplicationProtectedItems); + while (response.NextLink != null) + { + response = this + .GetSiteRecoveryClient() + .ReplicationProtectedItem.ListAllNext(response.NextLink, this.GetRequestHeaders()); + replicationProtectedItems.AddRange(response.ReplicationProtectedItems); + } + + output.ReplicationProtectedItems = replicationProtectedItems; + return output; + } + /// /// Retrieves Replicated Protected Item. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs index 37b1dd2d3ac7..cd534655992f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs @@ -17,29 +17,35 @@ using System.Diagnostics.CodeAnalysis; using System.Runtime.Serialization; using Microsoft.Azure.Management.SiteRecovery.Models; +using System.Linq; namespace Microsoft.Azure.Commands.SiteRecovery { - public class ASRRecoveryPlanGroup : RecoveryPlanGroup + public class ASRRecoveryPlanGroup { public ASRRecoveryPlanGroup() : base() { } - public ASRRecoveryPlanGroup(RecoveryPlanGroup recoveryPlanGroup) + public ASRRecoveryPlanGroup(RecoveryPlanGroup recoveryPlanGroup, IList replicationProtectedItems = null) { if(recoveryPlanGroup != null) { this.GroupType = recoveryPlanGroup.GroupType; this.StartGroupActions = recoveryPlanGroup.StartGroupActions; - this.ReplicationProtectedItems = recoveryPlanGroup.ReplicationProtectedItems; this.EndGroupActions = recoveryPlanGroup.EndGroupActions; + + if (replicationProtectedItems != null) + { + var replicationProtectedItemList = recoveryPlanGroup.ReplicationProtectedItems.Select(item => item.Id.ToLower()); + this.ReplicationProtectedItems = replicationProtectedItems.Where(rpi => replicationProtectedItemList.Contains(rpi.Id.ToLower())).ToList(); + } } } - public ASRRecoveryPlanGroup(string groupName, RecoveryPlanGroup recoveryPlanGroup) - : this(recoveryPlanGroup) + public ASRRecoveryPlanGroup(string groupName, RecoveryPlanGroup recoveryPlanGroup, IList replicationProtectedItems = null) + : this(recoveryPlanGroup, replicationProtectedItems) { this.Name = groupName; } @@ -49,6 +55,22 @@ public ASRRecoveryPlanGroup(string groupName, RecoveryPlanGroup recoveryPlanGrou /// public string Name { get; set; } + // Summary: + // Optional. Recovery plan end group actions. + public IList EndGroupActions { get; set; } + // + // Summary: + // Required. Group type. + public string GroupType { get; set; } + // + // Summary: + // Optional. List of protected items. + public IList ReplicationProtectedItems { get; set; } + // + // Summary: + // Optional. Recovery plan start group actions. + public IList StartGroupActions { get; set; } + } /// /// Azure Site Recovery Recovery Plan. @@ -71,7 +93,7 @@ public ASRRecoveryPlan() /// parameters. /// /// Recovery plan object - public ASRRecoveryPlan(RecoveryPlan recoveryPlan) + public ASRRecoveryPlan(RecoveryPlan recoveryPlan, IList replicationProtectedItems) { this.Name = recoveryPlan.Name; this.FriendlyName = recoveryPlan.Properties.FriendlyName; @@ -81,6 +103,7 @@ public ASRRecoveryPlan(RecoveryPlan recoveryPlan) this.Groups = new List(); int groupCount = 0; string groupName = null; + foreach (RecoveryPlanGroup recoveryPlanGroup in recoveryPlan.Properties.Groups) { switch(recoveryPlanGroup.GroupType) @@ -96,8 +119,9 @@ public ASRRecoveryPlan(RecoveryPlan recoveryPlan) groupName = Constants.Shutdown; break; } - this.Groups.Add(new ASRRecoveryPlanGroup(groupName, recoveryPlanGroup)); + this.Groups.Add(new ASRRecoveryPlanGroup(groupName, recoveryPlanGroup, replicationProtectedItems)); } + this.ReplicationProvider = recoveryPlan.Properties.ReplicationProviders; } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs index 5fd56867038b..0f7874e85f3f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryPlannedFailoverJob.cs @@ -215,7 +215,6 @@ private void StartRpPlannedFailover() { // Refresh RP Object var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); - this.RecoveryPlan = new ASRRecoveryPlan(rp.RecoveryPlan); var recoveryPlanPlannedFailoverInputProperties = new RecoveryPlanPlannedFailoverInputProperties() { @@ -223,7 +222,7 @@ private void StartRpPlannedFailover() ProviderSpecificDetails = new List() }; - foreach (string replicationProvider in this.RecoveryPlan.ReplicationProvider) + foreach (string replicationProvider in rp.RecoveryPlan.Properties.ReplicationProviders) { if (0 == string.Compare( replicationProvider, diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs index b483a94f5401..580b4714dca6 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryTestFailoverJob.cs @@ -264,7 +264,6 @@ private void StartRpTestFailover() { // Refresh RP Object var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); - this.RecoveryPlan = new ASRRecoveryPlan(rp.RecoveryPlan); var recoveryPlanTestFailoverInputProperties = new RecoveryPlanTestFailoverInputProperties() { @@ -274,7 +273,7 @@ private void StartRpTestFailover() ProviderSpecificDetails = new List() }; - foreach (string replicationProvider in this.RecoveryPlan.ReplicationProvider) + foreach (string replicationProvider in rp.RecoveryPlan.Properties.ReplicationProviders) { if (0 == string.Compare( replicationProvider, diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs index 99f28e751a1f..809f6a99f948 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/StartAzureSiteRecoveryUnPlannedFailoverJob.cs @@ -206,7 +206,6 @@ private void StartRpUnplannedFailover() { // Refresh RP Object var rp = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); - this.RecoveryPlan = new ASRRecoveryPlan(rp.RecoveryPlan); var recoveryPlanUnplannedFailoverInputProperties = new RecoveryPlanUnplannedFailoverInputProperties() { @@ -215,7 +214,7 @@ private void StartRpUnplannedFailover() ProviderSpecificDetails = new List() }; - foreach (string replicationProvider in this.RecoveryPlan.ReplicationProvider) + foreach (string replicationProvider in rp.RecoveryPlan.Properties.ReplicationProviders) { if (0 == string.Compare( replicationProvider, diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs index 36b56367bfb3..801587e31a6f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs @@ -114,12 +114,12 @@ public override void ExecuteSiteRecoveryCmdlet() RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(fabricName, pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); - RecoveryPlanProtectedItem recoveryPlanProtectedItem = new RecoveryPlanProtectedItem(); - recoveryPlanProtectedItem.Id = replicationProtectedItemResponse.ReplicationProtectedItem.Id; + //RecoveryPlanProtectedItem recoveryPlanProtectedItem = new RecoveryPlanProtectedItem(); + //recoveryPlanProtectedItem.Id = replicationProtectedItemResponse.ReplicationProtectedItem.Id; tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.CompareOrdinal(g.Name, Group.Name) == 0); if (tempGroup != null) { - this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.Add(recoveryPlanProtectedItem); + this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.Add(replicationProtectedItemResponse.ReplicationProtectedItem); } } break; @@ -139,10 +139,11 @@ public override void ExecuteSiteRecoveryCmdlet() tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.CompareOrdinal(g.Name, Group.Name) == 0); if (tempGroup != null) { - RecoveryPlanProtectedItem tempRecoveryPlanProtectedItem = this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.FirstOrDefault(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0); - if (tempRecoveryPlanProtectedItem != null) + //RecoveryPlanProtectedItem tempRecoveryPlanProtectedItem = this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.FirstOrDefault(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0); + var ReplicationProtectedItem = this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.FirstOrDefault(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0); + if (ReplicationProtectedItem != null) { - this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.Remove(tempRecoveryPlanProtectedItem); + this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.Remove(ReplicationProtectedItem); } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs index b00908253fc9..75b96bf5f116 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/GetAzureSiteRecoveryRecoveryPlan.cs @@ -176,7 +176,15 @@ private void GetRecoveryPlanFile(RecoveryPlan recoveryPlan) /// List of Recovery Plans private void WriteRecoveryPlans(IList recoveryPlanList) { - this.WriteObject(recoveryPlanList.Select(rp => new ASRRecoveryPlan(rp)), true); + IList asrRecoveryPlans = new List(); + + foreach(RecoveryPlan recoveryPlan in recoveryPlanList) + { + var replicationProtectedItemListResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItemInRP(recoveryPlan.Name); + asrRecoveryPlans.Add(new ASRRecoveryPlan(recoveryPlan, replicationProtectedItemListResponse.ReplicationProtectedItems)); + } + + this.WriteObject(asrRecoveryPlans, true); } /// @@ -185,7 +193,8 @@ private void WriteRecoveryPlans(IList recoveryPlanList) /// Recovery Plan object private void WriteRecoveryPlan(RecoveryPlan recoveryPlan) { - this.WriteObject(new ASRRecoveryPlan(recoveryPlan)); + var replicationProtectedItemListResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItemInRP(recoveryPlan.Name); + this.WriteObject(new ASRRecoveryPlan(recoveryPlan, replicationProtectedItemListResponse.ReplicationProtectedItems)); } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs index 561e759fa33a..8814fbdf58f6 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// /// Remove Azure Site Recovery Recovery Plan. /// - [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryRecoveryPlan")] + [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryRecoveryPlan", DefaultParameterSetName = ASRParameterSets.ByObject)] public class RemoveAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase { #region Parameters @@ -32,7 +32,13 @@ public class RemoveAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase /// /// Gets or sets Name of the Recovery Plan. /// - [Parameter(Mandatory = true)] + [Parameter(Mandatory = true, ParameterSetName = ASRParameterSets.ByName)] + public string Name { get; set; } + + /// + /// Gets or sets Name of the Recovery Plan. + /// + [Parameter(Mandatory = true, ParameterSetName = ASRParameterSets.ByObject)] public ASRRecoveryPlan RecoveryPlan { get; set; } #endregion Parameters @@ -44,7 +50,12 @@ public override void ExecuteSiteRecoveryCmdlet() { base.ExecuteSiteRecoveryCmdlet(); - LongRunningOperationResponse response = RecoveryServicesClient.RemoveAzureSiteRecoveryRecoveryPlan(this.RecoveryPlan.Name); + if (string.Compare(this.ParameterSetName, ASRParameterSets.ByObject, StringComparison.OrdinalIgnoreCase) == 0) + { + this.Name = this.RecoveryPlan.Name; + } + + LongRunningOperationResponse response = RecoveryServicesClient.RemoveAzureSiteRecoveryRecoveryPlan(this.Name); JobResponse jobResponse = RecoveryServicesClient diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs index d79965bc8c2b..033dd3075149 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs @@ -21,6 +21,7 @@ using System.Collections.Generic; using Newtonsoft.Json; using System.IO; +using System.Linq; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -89,7 +90,7 @@ private void UpdateReplicationPlan(ASRRecoveryPlan asrRecoveryPlan) RecoveryPlanGroup recoveryPlanGroup = new RecoveryPlanGroup() { GroupType = asrRecoveryPlanGroup.GroupType, - ReplicationProtectedItems = asrRecoveryPlanGroup.ReplicationProtectedItems, + ReplicationProtectedItems = asrRecoveryPlanGroup.ReplicationProtectedItems.Select(item => new RecoveryPlanProtectedItem(item.Id)).ToList(), StartGroupActions = asrRecoveryPlanGroup.StartGroupActions, EndGroupActions = asrRecoveryPlanGroup.EndGroupActions }; From d12218e7afb879dde5d4eda81a0415bc97fc4883 Mon Sep 17 00:00:00 2001 From: vijaynar Date: Wed, 3 Feb 2016 19:05:16 +0530 Subject: [PATCH 23/46] Perf fix for Enumerate VM and ProtectionEntity: 1) reduced calls from 669 to 3 for 336 protected VMs 2) time reduced from 581 sec to 15 sec 3) Fixed for protectionEntity also 4) moved code to common class --- ...RecoveryReplicationProtectedItemsClient.cs | 118 +++++++++++++++--- .../GetAzureSiteRecoveryProtectionEntity.cs | 46 +------ .../VM/GetAzureSiteRecoveryVM.cs | 44 +------ 3 files changed, 112 insertions(+), 96 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs index 2bd68f976000..4cfa7b11644b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs @@ -13,10 +13,11 @@ // ---------------------------------------------------------------------------------- using System; +using System.Linq; +using System.Collections.Generic; +using System.Threading.Tasks; using Microsoft.Azure.Management.SiteRecovery; using Microsoft.Azure.Management.SiteRecovery.Models; -using System.Threading.Tasks; -using System.Collections.Generic; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -135,9 +136,9 @@ public LongRunningOperationResponse DisableProtection(string fabricName, /// Replication Protected Itenm /// Input for Planned Failover /// Job Response - public LongRunningOperationResponse StartAzureSiteRecoveryPlannedFailover(string fabricName, - string protectionContainerName, - string replicationProtectedItemName, + public LongRunningOperationResponse StartAzureSiteRecoveryPlannedFailover(string fabricName, + string protectionContainerName, + string replicationProtectedItemName, PlannedFailoverInput input) { return this.GetSiteRecoveryClient().ReplicationProtectedItem.BeginPlannedFailover(fabricName, @@ -155,9 +156,9 @@ public LongRunningOperationResponse StartAzureSiteRecoveryPlannedFailover(string /// Replication Protected Item /// Input for Unplanned failover /// Job Response - public LongRunningOperationResponse StartAzureSiteRecoveryUnplannedFailover(string fabricName, - string protectionContainerName, - string replicationProtectedItemName, + public LongRunningOperationResponse StartAzureSiteRecoveryUnplannedFailover(string fabricName, + string protectionContainerName, + string replicationProtectedItemName, UnplannedFailoverInput input) { return this.GetSiteRecoveryClient().ReplicationProtectedItem.BeginUnplannedFailover( @@ -176,9 +177,9 @@ public LongRunningOperationResponse StartAzureSiteRecoveryUnplannedFailover(stri /// Replication Protected Item /// Input for Test failover /// Job Response - public LongRunningOperationResponse StartAzureSiteRecoveryTestFailover(string fabricName, - string protectionContainerName, - string replicationProtectedItemName, + public LongRunningOperationResponse StartAzureSiteRecoveryTestFailover(string fabricName, + string protectionContainerName, + string replicationProtectedItemName, TestFailoverInput input) { return this.GetSiteRecoveryClient().ReplicationProtectedItem.BeginTestFailover( @@ -196,7 +197,7 @@ public LongRunningOperationResponse StartAzureSiteRecoveryTestFailover(string fa /// Protection Conatiner Name /// Replication Protected Item /// Job Response - public LongRunningOperationResponse StartAzureSiteRecoveryCommitFailover(string fabricName, + public LongRunningOperationResponse StartAzureSiteRecoveryCommitFailover(string fabricName, string protectionContainerName, string replicationProtectedItemName) { @@ -215,9 +216,9 @@ public LongRunningOperationResponse StartAzureSiteRecoveryCommitFailover(string /// Replication Protected Item /// Input for Reprotect /// Job Response - public LongRunningOperationResponse StartAzureSiteRecoveryReprotection(string fabricName, - string protectionContainerName, - string replicationProtectedItemName, + public LongRunningOperationResponse StartAzureSiteRecoveryReprotection(string fabricName, + string protectionContainerName, + string replicationProtectedItemName, ReverseReplicationInput input) { return this.GetSiteRecoveryClient().ReplicationProtectedItem.BeginReprotect( @@ -227,5 +228,92 @@ public LongRunningOperationResponse StartAzureSiteRecoveryReprotection(string fa input, this.GetRequestHeaders()); } + + /// + /// Write Protection Entities + /// + /// List of protectable items + internal List FetchProtectionEntitiesData(IList protectableItems, string protectionContainerId, string protectionContainerName) + { + List asrProtectionEntityList = new List(); + Dictionary policyCache = new Dictionary(); + Dictionary protectedItemCache = new Dictionary(); + + // Check even if an single item is protected then we will get all the protecteditems & policies. + if (protectableItems.Select(p => 0 == string.Compare(p.Properties.ProtectionStatus, "protected", StringComparison.OrdinalIgnoreCase)) != null) + { + // Get all the protected items for the container. + ReplicationProtectedItemListResponse ReplicationProtectedItemListResponse = + this.GetAzureSiteRecoveryReplicationProtectedItem( + Utilities.GetValueFromArmId(protectionContainerId, ARMResourceTypeConstants.ReplicationFabrics), + protectionContainerName); + + // Fill all protected items in dictionary for quick access. + foreach (ReplicationProtectedItem protectedItem in ReplicationProtectedItemListResponse.ReplicationProtectedItems) + { + protectedItemCache.Add(protectedItem.Name.ToLower(), protectedItem); + } + + // Get all policies and fill up the dictionary once for quick access. + PolicyListResponse policyListResponse = this.GetAzureSiteRecoveryPolicy(); + foreach (Policy policy in policyListResponse.Policies) + { + policyCache.Add(policy.Name.ToLower(), policy); + } + } + + // Fill up powershell entity with all the data. + foreach (ProtectableItem protectableItem in protectableItems) + { + if (0 == string.Compare(protectableItem.Properties.ProtectionStatus, "protected", StringComparison.OrdinalIgnoreCase)) + { + string protectedItemName = Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems).ToLower(); + ReplicationProtectedItem protectedItem = protectedItemCache[protectedItemName]; + + string policyName = Utilities.GetValueFromArmId(protectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies).ToLower(); + Policy asrPolicy = policyCache[policyName]; + + asrProtectionEntityList.Add(new ASRVirtualMachine(protectableItem, protectedItem, asrPolicy)); + } + else + { + asrProtectionEntityList.Add(new ASRVirtualMachine(protectableItem)); + } + } + + asrProtectionEntityList.Sort((x, y) => x.FriendlyName.CompareTo(y.FriendlyName)); + return asrProtectionEntityList; + } + + /// + /// Write Protection Entity + /// + /// + internal ASRVirtualMachine FetchProtectionEntityData(ProtectableItem protectableItem, string protectionContainerId, string protectionContainerName) + { + ASRVirtualMachine asrVirtualMachine = null; + ReplicationProtectedItemResponse replicationProtectedItemResponse = null; + if (!String.IsNullOrEmpty(protectableItem.Properties.ReplicationProtectedItemId)) + { + replicationProtectedItemResponse = this.GetAzureSiteRecoveryReplicationProtectedItem( + Utilities.GetValueFromArmId(protectionContainerId, ARMResourceTypeConstants.ReplicationFabrics), + protectionContainerName, + Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + } + + if (replicationProtectedItemResponse != null && replicationProtectedItemResponse.ReplicationProtectedItem != null) + { + PolicyResponse policyResponse = this.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId( + replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); + asrVirtualMachine = new ASRVirtualMachine(protectableItem, replicationProtectedItemResponse.ReplicationProtectedItem, policyResponse.Policy); + } + else + { + asrVirtualMachine = new ASRVirtualMachine(protectableItem); + } + + return asrVirtualMachine; + } + } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs index ecb356582893..f55e27d7e303 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs @@ -123,7 +123,7 @@ private void GetByName() { ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem( Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionContainer.Name, + this.ProtectionContainer.Name, protectableItem.Name); WriteProtectionEntity(protectableItemResponse.ProtectableItem); @@ -158,28 +158,8 @@ private void GetAll() /// List of protectable items private void WriteProtectionEntities(IList protectableItems) { - List asrProtectionEntityList = new List(); - foreach (ProtectableItem protectableItem in protectableItems) - { - ReplicationProtectedItemResponse replicationProtectedItemResponse = null; - if (!String.IsNullOrEmpty(protectableItem.Properties.ReplicationProtectedItemId)) - { - replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem( - Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionContainer.Name, - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); - } - - if (replicationProtectedItemResponse != null && replicationProtectedItemResponse.ReplicationProtectedItem != null) - { - PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); - asrProtectionEntityList.Add(new ASRProtectionEntity(protectableItem, replicationProtectedItemResponse.ReplicationProtectedItem, policyResponse.Policy)); - } - else - { - asrProtectionEntityList.Add(new ASRProtectionEntity(protectableItem)); - } - } + List asrProtectionEntityList = RecoveryServicesClient.FetchProtectionEntitiesData( + protectableItems, this.ProtectionContainer.ID, this.ProtectionContainer.Name); this.WriteObject(asrProtectionEntityList, true); } @@ -190,24 +170,8 @@ private void WriteProtectionEntities(IList protectableItems) /// private void WriteProtectionEntity(ProtectableItem protectableItem) { - ReplicationProtectedItemResponse replicationProtectedItemResponse = null; - if (!String.IsNullOrEmpty(protectableItem.Properties.ReplicationProtectedItemId)) - { - replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem( - Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionContainer.Name, - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); - } - - if (replicationProtectedItemResponse != null && replicationProtectedItemResponse.ReplicationProtectedItem != null) - { - PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); - this.WriteObject(new ASRProtectionEntity(protectableItem, replicationProtectedItemResponse.ReplicationProtectedItem, policyResponse.Policy)); - } - else - { - this.WriteObject(new ASRProtectionEntity(protectableItem)); - } + ASRVirtualMachine ASRVirtualMachine = RecoveryServicesClient.FetchProtectionEntityData(protectableItem, this.ProtectionContainer.ID, this.ProtectionContainer.Name); + this.WriteObject(ASRVirtualMachine); } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs index 42680d088f94..578ee91663cb 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs @@ -158,28 +158,8 @@ private void GetAll() /// List of protectable items private void WriteProtectionEntities(IList protectableItems) { - List asrProtectionEntityList = new List(); - foreach (ProtectableItem protectableItem in protectableItems) - { - ReplicationProtectedItemResponse replicationProtectedItemResponse = null; - if (!String.IsNullOrEmpty(protectableItem.Properties.ReplicationProtectedItemId)) - { - replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem( - Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionContainer.Name, - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); - } - - if (replicationProtectedItemResponse != null && replicationProtectedItemResponse.ReplicationProtectedItem != null) - { - PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); - asrProtectionEntityList.Add(new ASRVirtualMachine(protectableItem, replicationProtectedItemResponse.ReplicationProtectedItem, policyResponse.Policy)); - } - else - { - asrProtectionEntityList.Add(new ASRVirtualMachine(protectableItem)); - } - } + List asrProtectionEntityList = RecoveryServicesClient.FetchProtectionEntitiesData( + protectableItems, this.ProtectionContainer.ID, this.ProtectionContainer.Name); this.WriteObject(asrProtectionEntityList, true); } @@ -190,24 +170,8 @@ private void WriteProtectionEntities(IList protectableItems) /// private void WriteProtectionEntity(ProtectableItem protectableItem) { - ReplicationProtectedItemResponse replicationProtectedItemResponse = null; - if (!String.IsNullOrEmpty(protectableItem.Properties.ReplicationProtectedItemId)) - { - replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem( - Utilities.GetValueFromArmId(this.ProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionContainer.Name, - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); - } - - if (replicationProtectedItemResponse != null && replicationProtectedItemResponse.ReplicationProtectedItem != null) - { - PolicyResponse policyResponse = RecoveryServicesClient.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); - this.WriteObject(new ASRVirtualMachine(protectableItem, replicationProtectedItemResponse.ReplicationProtectedItem, policyResponse.Policy)); - } - else - { - this.WriteObject(new ASRVirtualMachine(protectableItem)); - } + ASRVirtualMachine ASRVirtualMachine = RecoveryServicesClient.FetchProtectionEntityData(protectableItem, this.ProtectionContainer.ID, this.ProtectionContainer.Name); + this.WriteObject(ASRVirtualMachine); } } } \ No newline at end of file From 3f629430b117378312b6b997f426efb81641bde8 Mon Sep 17 00:00:00 2001 From: vijaynar Date: Fri, 5 Feb 2016 10:54:51 +0530 Subject: [PATCH 24/46] Changing common function for fetching VM & protectedEntity as generic. --- ...RecoveryReplicationProtectedItemsClient.cs | 55 +++++++++++++++---- .../GetAzureSiteRecoveryProtectionEntity.cs | 7 ++- .../VM/GetAzureSiteRecoveryVM.cs | 7 ++- 3 files changed, 52 insertions(+), 17 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs index 4cfa7b11644b..b6962be5dd23 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs @@ -233,7 +233,7 @@ public LongRunningOperationResponse StartAzureSiteRecoveryReprotection(string fa /// Write Protection Entities /// /// List of protectable items - internal List FetchProtectionEntitiesData(IList protectableItems, string protectionContainerId, string protectionContainerName) + internal List FetchProtectionEntitiesData(IList protectableItems, string protectionContainerId, string protectionContainerName) { List asrProtectionEntityList = new List(); Dictionary policyCache = new Dictionary(); @@ -262,36 +262,52 @@ internal List FetchProtectionEntitiesData(IList entities = new List(); // Fill up powershell entity with all the data. foreach (ProtectableItem protectableItem in protectableItems) { if (0 == string.Compare(protectableItem.Properties.ProtectionStatus, "protected", StringComparison.OrdinalIgnoreCase)) { - string protectedItemName = Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems).ToLower(); + string protectedItemName = Utilities.GetValueFromArmId( + protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems).ToLower(); ReplicationProtectedItem protectedItem = protectedItemCache[protectedItemName]; string policyName = Utilities.GetValueFromArmId(protectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies).ToLower(); Policy asrPolicy = policyCache[policyName]; - asrProtectionEntityList.Add(new ASRVirtualMachine(protectableItem, protectedItem, asrPolicy)); + if (typeof(T) == typeof(ASRVirtualMachine)) + { + entities.Add((T)Convert.ChangeType(new ASRVirtualMachine(protectableItem, protectedItem, asrPolicy), typeof(T))); + } + else + { + entities.Add((T)Convert.ChangeType(new ASRProtectionEntity(protectableItem, protectedItem, asrPolicy), typeof(T))); + } } else { - asrProtectionEntityList.Add(new ASRVirtualMachine(protectableItem)); + if (typeof(T) == typeof(ASRVirtualMachine)) + { + entities.Add((T)Convert.ChangeType(new ASRVirtualMachine(protectableItem), typeof(T))); + } + else + { + entities.Add((T)Convert.ChangeType(new ASRProtectionEntity(protectableItem), typeof(T))); + } + } } asrProtectionEntityList.Sort((x, y) => x.FriendlyName.CompareTo(y.FriendlyName)); - return asrProtectionEntityList; + return entities; } /// /// Write Protection Entity /// /// - internal ASRVirtualMachine FetchProtectionEntityData(ProtectableItem protectableItem, string protectionContainerId, string protectionContainerName) + internal T FetchProtectionEntityData(ProtectableItem protectableItem, string protectionContainerId, string protectionContainerName) { - ASRVirtualMachine asrVirtualMachine = null; ReplicationProtectedItemResponse replicationProtectedItemResponse = null; if (!String.IsNullOrEmpty(protectableItem.Properties.ReplicationProtectedItemId)) { @@ -305,14 +321,31 @@ internal ASRVirtualMachine FetchProtectionEntityData(ProtectableItem protectable { PolicyResponse policyResponse = this.GetAzureSiteRecoveryPolicy(Utilities.GetValueFromArmId( replicationProtectedItemResponse.ReplicationProtectedItem.Properties.PolicyID, ARMResourceTypeConstants.ReplicationPolicies)); - asrVirtualMachine = new ASRVirtualMachine(protectableItem, replicationProtectedItemResponse.ReplicationProtectedItem, policyResponse.Policy); + if (typeof(T) == typeof(ASRVirtualMachine)) + { + var pe = new ASRVirtualMachine(protectableItem, replicationProtectedItemResponse.ReplicationProtectedItem, policyResponse.Policy); + return (T)Convert.ChangeType(pe, typeof(T)); + } + else + { + var pe = new ASRProtectionEntity(protectableItem, replicationProtectedItemResponse.ReplicationProtectedItem, policyResponse.Policy); + return (T)Convert.ChangeType(pe, typeof(T)); + } + } else { - asrVirtualMachine = new ASRVirtualMachine(protectableItem); + if (typeof(T) == typeof(ASRVirtualMachine)) + { + var pe = new ASRVirtualMachine(protectableItem); + return (T)Convert.ChangeType(pe, typeof(T)); + } + else + { + var pe = new ASRProtectionEntity(protectableItem); + return (T)Convert.ChangeType(pe, typeof(T)); + } } - - return asrVirtualMachine; } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs index f55e27d7e303..10ea48c46efa 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/GetAzureSiteRecoveryProtectionEntity.cs @@ -158,7 +158,7 @@ private void GetAll() /// List of protectable items private void WriteProtectionEntities(IList protectableItems) { - List asrProtectionEntityList = RecoveryServicesClient.FetchProtectionEntitiesData( + List asrProtectionEntityList = RecoveryServicesClient.FetchProtectionEntitiesData( protectableItems, this.ProtectionContainer.ID, this.ProtectionContainer.Name); this.WriteObject(asrProtectionEntityList, true); @@ -170,8 +170,9 @@ private void WriteProtectionEntities(IList protectableItems) /// private void WriteProtectionEntity(ProtectableItem protectableItem) { - ASRVirtualMachine ASRVirtualMachine = RecoveryServicesClient.FetchProtectionEntityData(protectableItem, this.ProtectionContainer.ID, this.ProtectionContainer.Name); - this.WriteObject(ASRVirtualMachine); + ASRProtectionEntity entity = RecoveryServicesClient.FetchProtectionEntityData( + protectableItem, this.ProtectionContainer.ID, this.ProtectionContainer.Name); + this.WriteObject(entity); } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs index 578ee91663cb..a45e6b58d7ea 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/GetAzureSiteRecoveryVM.cs @@ -158,7 +158,7 @@ private void GetAll() /// List of protectable items private void WriteProtectionEntities(IList protectableItems) { - List asrProtectionEntityList = RecoveryServicesClient.FetchProtectionEntitiesData( + List asrProtectionEntityList = RecoveryServicesClient.FetchProtectionEntitiesData( protectableItems, this.ProtectionContainer.ID, this.ProtectionContainer.Name); this.WriteObject(asrProtectionEntityList, true); @@ -170,8 +170,9 @@ private void WriteProtectionEntities(IList protectableItems) /// private void WriteProtectionEntity(ProtectableItem protectableItem) { - ASRVirtualMachine ASRVirtualMachine = RecoveryServicesClient.FetchProtectionEntityData(protectableItem, this.ProtectionContainer.ID, this.ProtectionContainer.Name); - this.WriteObject(ASRVirtualMachine); + ASRVirtualMachine entity = RecoveryServicesClient.FetchProtectionEntityData( + protectableItem, this.ProtectionContainer.ID, this.ProtectionContainer.Name); + this.WriteObject(entity); } } } \ No newline at end of file From bbb735613b3dec85bdf937563095d3787b7fc258 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Fri, 5 Feb 2016 16:06:33 +0530 Subject: [PATCH 25/46] Adding RP Tests --- .../ScenarioTests/SiteRecoveryTests.cs | 14 ++ .../ScenarioTests/SiteRecoveryTests.ps1 | 135 +++++++++++++++++- ...rtAzureSiteRecoveryPolicyAssociationJob.cs | 24 +++- 3 files changed, 163 insertions(+), 10 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.cs index 6e518eb3f561..611eee3ee107 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.cs @@ -54,6 +54,20 @@ public void TestDissociateProfile() this.RunPowerShellTest("Test-SiteRecoveryDissociateProfile -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEnableDR() + { + this.RunPowerShellTest("Test-SiteRecoveryEnableDR -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateAndEnumerateRP() + { + this.RunPowerShellTest("Test-SiteRecoveryCreateAndEnumerateRP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void VaultCRUDTests() diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 index 2d7474cc1131..31113979507f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 @@ -69,9 +69,8 @@ function Test-SiteRecoveryCreateProfile Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath # Create profile - $job = New-AzureRmSiteRecoveryPolicy -Name ppAzure -ReplicationProvider HyperVReplicaAzure -ReplicationFrequencyInSeconds 30 -RecoveryPoints 1 -ApplicationConsistentSnapshotFrequencyInHours 0 -RecoveryAzureStorageAccountId "/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/b2astorageversion1" - - # WaitForJobCompletion -JobId $job.Name + $job = New-AzureRmSiteRecoveryPolicy -Name ppAzure -ReplicationProvider HyperVReplicaAzure -ReplicationFrequencyInSeconds 30 -RecoveryPoints 1 -ApplicationConsistentSnapshotFrequencyInHours 0 -RecoveryAzureStorageAccountId "/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2" + WaitForJobCompletion -JobId $job.Name } <# @@ -92,7 +91,7 @@ function Test-SiteRecoveryDeleteProfile # Delete the profile $job = Remove-AzureRmSiteRecoveryPolicy -Policy $profiles[0] - # WaitForJobCompletion -JobId $job.Name + WaitForJobCompletion -JobId $job.Name } <# @@ -111,10 +110,11 @@ function Test-SiteRecoveryAssociateProfile $pp = Get-AzureRmSiteRecoveryPolicy -Name ppAzure; # Associate the profile - # $job = Start-AzureRmSiteRecoveryPolicyAssociationJob -Policy $pp -PrimaryProtectionContainer $pri - # WaitForJobCompletion -JobId $job.Name + $job = Start-AzureRmSiteRecoveryPolicyAssociationJob -Policy $pp -PrimaryProtectionContainer $pri + WaitForJobCompletion -JobId $job.Name } + <# .SYNOPSIS Site Recovery Dissociate profile Test @@ -132,7 +132,53 @@ function Test-SiteRecoveryDissociateProfile # Dissociate the profile $job = Start-AzureRmSiteRecoveryPolicyDissociationJob -Policy $pp -PrimaryProtectionContainer $pri - # WaitForJobCompletion -JobId $job.Name + WaitForJobCompletion -JobId $job.Name +} + +<# +.SYNOPSIS +Site Recovery Dissociate profile Test +#> +function Test-SiteRecoveryEnableDR +{ + param([string] $vaultSettingsFilePath) + + # Import Azure Site Recovery Vault Settings + Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath + + # Get the primary cloud, recovery cloud, and protection profile + $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName B2asite1 + $pp = Get-AzureRmSiteRecoveryPolicy -Name ppAzure; + + # EnableDR + $VM = Get-AzureRMSiteRecoveryProtectionEntity -ProtectionContainer $PrimaryContainer -FriendlyName rpVM12 + $job = Set-AzureRMSiteRecoveryProtectionEntity -ProtectionEntity $VM -Protection Enable -Force -Policy $pp -RecoveryAzureStorageAccountId "/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2" + WaitForJobCompletion -JobId $job.Name + WaitForIRCompletion -VM $VM +} + +<# +.SYNOPSIS +Site Recovery Dissociate profile Test +#> +function Test-SiteRecoveryCreateAndEnumerateRP +{ + param([string] $vaultSettingsFilePath) + + # Import Azure Site Recovery Vault Settings + Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath + + # Get the primary cloud, recovery cloud, and protection profile + $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName B2asite1 + $PrimaryServer = Get-AzureRMSiteRecoveryServer -FriendlyName $PrimaryServerName + $VM = Get-AzureRMSiteRecoveryProtectionEntity -ProtectionContainer $PrimaryContainer -FriendlyName rpVM12 + + $job = New-AzureRmSiteRecoveryRecoveryPlan -Name rp -PrimaryServer $PrimaryServer -Azure -FailoverDeploymentModel ResourceManager -ProtectionEntityList $VM + WaitForJobCompletion -JobId $job.Name + + $RP = Get-AzureRmSiteRecoveryRecoveryPlan -Name $RPName + Assert-NotNull($RP) + Assert-True { $RP.Count -gt 0 } } <# @@ -142,6 +188,7 @@ Usage: WaitForJobCompletion -JobId $job.ID WaitForJobCompletion -JobId $job.ID -NumOfSecondsToWait 10 #> +<# function WaitForJobCompletion { param([string] $JobId, [Int] $NumOfSecondsToWait = 120) @@ -158,7 +205,81 @@ function WaitForJobCompletion Assert-True { $endStateDescription -ccontains $job.State } "Job did not reached desired state within $NumOfSecondsToWait seconds." } +#> + +function WaitForJobCompletion +{ + param( + [string] $JobId, + [int] $JobQueryWaitTimeInSeconds = 60, + [string] $Message = "NA" + ) + $isJobLeftForProcessing = $true; + do + { + $Job = Get-AzureRMSiteRecoveryJob -Name $JobId + Write-Host $("Job Status:") -ForegroundColor Green + $Job + + if($Job.State -eq "InProgress" -or $Job.State -eq "NotStarted") + { + $isJobLeftForProcessing = $true + } + else + { + $isJobLeftForProcessing = $false + } + + if($isJobLeftForProcessing) + { + if($Message -ne "NA") + { + Write-Host $Message -ForegroundColor Yellow + } + else + { + Write-Host $($($Job.JobType) + " in Progress...") -ForegroundColor Yellow + } + Write-Host $("Waiting for: " + $JobQueryWaitTimeInSeconds.ToString() + " Seconds") -ForegroundColor Yellow + Start-Sleep -Seconds $JobQueryWaitTimeInSeconds + } + }While($isJobLeftForProcessing) +} + +function WaitForIRCompletion +{ + param( + [PSObject] $VM, + [int] $JobQueryWaitTimeInSeconds = 60 + ) + $isProcessingLeft = $true + $IRjobs = $null + + Write-Host $("IR in Progress...") -ForegroundColor Yellow + do + { + $IRjobs = Get-AzureRMSiteRecoveryJob -TargetObjectId $VM.Name | Sort-Object StartTime -Descending | select -First 5 | Where-Object{$_.JobType -eq "IrCompletion"} + if($IRjobs -eq $null -or $IRjobs.Count -ne 1) + { + $isProcessingLeft = $true + } + else + { + $isProcessingLeft = $false + } + if($isProcessingLeft) + { + Write-Host $("IR in Progress...") -ForegroundColor Yellow + Write-Host $("Waiting for: " + $JobQueryWaitTimeInSeconds.ToString() + " Seconds") -ForegroundColor Yellow + Start-Sleep -Seconds $JobQueryWaitTimeInSeconds + } + }While($isProcessingLeft) + + Write-Host $("Finalize IR jobs:") -ForegroundColor Green + $IRjobs + WaitForJobCompletion -JobId $IRjobs[0].Name -JobQueryWaitTimeInSeconds $JobQueryWaitTimeInSeconds -Message $("Finalize IR in Progress...") +} <# .SYNOPSIS Site Recovery Vault CRUD Tests diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs index 4f0b9d4ab578..d508ebff64a1 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs @@ -18,6 +18,8 @@ using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; using System.Collections.Generic; +using System.Security.Cryptography; +using System.Text; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -112,7 +114,7 @@ private void EnterpriseToAzureAssociation() this.Policy.ReplicationProvider)); } - Associate(Constants.AzureContainer); + Associate(Constants.AzureContainer); } /// @@ -132,8 +134,24 @@ private void Associate(string targetProtectionContainerId) Properties = inputProperties }; - string mappingName = "ContainerMapping_" + Guid.NewGuid().ToString(); - LongRunningOperationResponse response = RecoveryServicesClient.ConfigureProtection(Utilities.GetValueFromArmId(this.PrimaryProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), this.PrimaryProtectionContainer.Name, mappingName, input); + string targetProtectionContainerName; + if( string.Compare(targetProtectionContainerId, Constants.AzureContainer, StringComparison.OrdinalIgnoreCase) == 0 ) + { + targetProtectionContainerName = Constants.AzureContainer; + } + else + { + targetProtectionContainerName = Utilities.GetValueFromArmId(targetProtectionContainerId, ARMResourceTypeConstants.ReplicationProtectionContainers); + } + + HashAlgorithm algorithm = new SHA256CryptoServiceProvider(); + byte[] hashedBytes = algorithm.ComputeHash(Encoding.UTF8.GetBytes(this.PrimaryProtectionContainer.Name + targetProtectionContainerName)); + string hashedCloudNames = BitConverter.ToString(hashedBytes).ToLower().Replace("-", string.Empty); + + string mappingName = string.Format("ContainerMapping_{0}_{1}", this.Policy.Name.ToLower(), hashedCloudNames); + LongRunningOperationResponse response = RecoveryServicesClient.ConfigureProtection( + Utilities.GetValueFromArmId(this.PrimaryProtectionContainer.ID, ARMResourceTypeConstants.ReplicationFabrics), + this.PrimaryProtectionContainer.Name, mappingName, input); JobResponse jobResponse = RecoveryServicesClient From 9314b74c60ebad0f701f38cf033ff4e581186e44 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Tue, 9 Feb 2016 19:15:25 +0530 Subject: [PATCH 26/46] 1) Changes corresponding to VmId field in RP 2) Fix for bug 6474599 --- .../Common/PSSiteRecoveryFabricClient.cs | 17 ++++++++++--- ...eRecoveryRecoveryServicesProviderClient.cs | 4 ++-- .../Models/PSConstants.cs | 20 ++++++++++++++++ .../NewAzureSiteRecoveryRecoveryPlan.cs | 16 ++++++++++++- .../UpdateAzureSiteRecoveryRecoveryPlan.cs | 24 ++++++++++++++++++- .../Server/RemoveAzureSiteRecoveryServer.cs | 7 +----- .../Site/RemoveAzureSiteRecoverySite.cs | 23 +++++++++++++----- 7 files changed, 92 insertions(+), 19 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs index 19b386554a3f..7e8116e681ab 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryFabricClient.cs @@ -76,11 +76,22 @@ public LongRunningOperationResponse CreateAzureSiteRecoveryFabric(string fabricN /// /// Deletes Azure Site Recovery Fabric. /// - /// Policy Input + /// Fabric Input + /// Long operation response + public LongRunningOperationResponse DeleteAzureSiteRecoveryFabric(string fabricName) + { + return this.GetSiteRecoveryClient().Fabrics.BeginDeleting(fabricName, + this.GetRequestHeaders()); + } + + /// + /// Purge Azure Site Recovery Fabric. + /// + /// Policy Input /// Long operation response - public LongRunningOperationResponse DeleteAzureSiteRecoveryFabric(string fabricName, FabricDeletionInput input) + public LongRunningOperationResponse PurgeAzureSiteRecoveryFabric(string fabricName) { - return this.GetSiteRecoveryClient().Fabrics.BeginDeleting(fabricName, input, + return this.GetSiteRecoveryClient().Fabrics.BeginPurging(fabricName, this.GetRequestHeaders()); } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs index 67097ef15670..fe0ca344214a 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs @@ -51,9 +51,9 @@ public RecoveryServicesProviderResponse GetAzureSiteRecoveryProvider(string fabr /// Fabric ID /// Provider ID /// Provider response - public LongRunningOperationResponse RemoveAzureSiteRecoveryProvider(string fabricId, string providerId, RecoveryServicesProviderDeletionInput input) + public LongRunningOperationResponse RemoveAzureSiteRecoveryProvider(string fabricId, string providerId) { - return this.GetSiteRecoveryClient().RecoveryServicesProvider.BeginDeleting(fabricId, providerId, input, this.GetRequestHeaders()); + return this.GetSiteRecoveryClient().RecoveryServicesProvider.BeginDeleting(fabricId, providerId, this.GetRequestHeaders()); } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs index 12b487778577..5efa223b0ebe 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSConstants.cs @@ -152,6 +152,26 @@ public static class Constants /// public const string HyperVReplicaAzure = "HyperVReplicaAzure"; + /// + /// Represents HyperVReplicaAzureReplicationDetails string constant. + /// + public const string HyperVReplicaAzureReplicationDetails = "HyperVReplicaAzureReplicationDetails"; + + /// + /// Represents HyperVReplica2012ReplicationDetails string constant. + /// + public const string HyperVReplica2012ReplicationDetails = "HyperVReplica2012ReplicationDetails"; + + /// + /// Represents InMageAzureV2ProviderSpecificSettings string constant. + /// + public const string InMageAzureV2ProviderSpecificSettings = "InMageAzureV2ProviderSpecificSettings"; + + /// + /// Represents InMageProviderSpecificSettings string constant. + /// + public const string InMageProviderSpecificSettings = "InMageProviderSpecificSettings"; + /// /// Represents San string constant. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs index 7a38d4e873dd..e895817539cd 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs @@ -108,7 +108,7 @@ public override void ExecuteSiteRecoveryCmdlet() { base.ExecuteSiteRecoveryCmdlet(); - switch(this.ParameterSetName) + switch (this.ParameterSetName) { case ASRParameterSets.EnterpriseToEnterprise: failoverDeploymentModel = Constants.NotApplicable; @@ -163,8 +163,22 @@ private void CreateReplicationPlan() RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(fabricName, pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + string VmId = null; + + switch(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails.InstanceType) + { + case Constants.HyperVReplicaAzureReplicationDetails: + VmId = ((HyperVReplicaAzureReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails).VmId; + break; + + case Constants.HyperVReplica2012ReplicationDetails: + VmId = ((HyperVReplica2012ReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails).VmId; + break; + }; + RecoveryPlanProtectedItem recoveryPlanProtectedItem = new RecoveryPlanProtectedItem(); recoveryPlanProtectedItem.Id = replicationProtectedItemResponse.ReplicationProtectedItem.Id; + recoveryPlanProtectedItem.VirtualMachineId = VmId; recoveryPlanGroup.ReplicationProtectedItems.Add(recoveryPlanProtectedItem); } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs index 033dd3075149..dc0caf122896 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs @@ -90,10 +90,32 @@ private void UpdateReplicationPlan(ASRRecoveryPlan asrRecoveryPlan) RecoveryPlanGroup recoveryPlanGroup = new RecoveryPlanGroup() { GroupType = asrRecoveryPlanGroup.GroupType, - ReplicationProtectedItems = asrRecoveryPlanGroup.ReplicationProtectedItems.Select(item => new RecoveryPlanProtectedItem(item.Id)).ToList(), + ReplicationProtectedItems = asrRecoveryPlanGroup.ReplicationProtectedItems.Select(item => + { + var newItem = new RecoveryPlanProtectedItem(item.Id); + + string VmId = null; + + switch (item.Properties.ProviderSpecificDetails.InstanceType) + { + case Constants.HyperVReplicaAzureReplicationDetails: + VmId = ((HyperVReplicaAzureReplicationDetails)item.Properties.ProviderSpecificDetails).VmId; + break; + + case Constants.HyperVReplica2012ReplicationDetails: + VmId = ((HyperVReplica2012ReplicationDetails)item.Properties.ProviderSpecificDetails).VmId; + break; + }; + + newItem.VirtualMachineId = VmId; + + return newItem; + + }).ToList(), StartGroupActions = asrRecoveryPlanGroup.StartGroupActions, EndGroupActions = asrRecoveryPlanGroup.EndGroupActions }; + updateRecoveryPlanInputProperties.Groups.Add(recoveryPlanGroup); } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs index 682604d12632..a04936c2d345 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs @@ -68,13 +68,8 @@ private void RemoveServer() if (!this.Force.IsPresent) { - RecoveryServicesProviderDeletionInput input = new RecoveryServicesProviderDeletionInput() - { - Properties = new RecoveryServicesProviderDeletionInputProperties() - }; - response = - RecoveryServicesClient.RemoveAzureSiteRecoveryProvider(Utilities.GetValueFromArmId(this.Server.ID, ARMResourceTypeConstants.ReplicationFabrics), this.Server.Name, input); + RecoveryServicesClient.RemoveAzureSiteRecoveryProvider(Utilities.GetValueFromArmId(this.Server.ID, ARMResourceTypeConstants.ReplicationFabrics), this.Server.Name); } else { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/RemoveAzureSiteRecoverySite.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/RemoveAzureSiteRecoverySite.cs index 866b00a2891e..ee94b68616b2 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/RemoveAzureSiteRecoverySite.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Site/RemoveAzureSiteRecoverySite.cs @@ -37,6 +37,12 @@ public class RemoveAzureSiteRecoverySite : SiteRecoveryCmdletBase [ValidateNotNullOrEmpty] public ASRSite Site { get; set; } + /// + /// Gets or sets switch parameter. On passing, command does not ask for confirmation. + /// + [Parameter] + public SwitchParameter Force { get; set; } + #endregion /// @@ -54,14 +60,19 @@ public override void ExecuteSiteRecoveryCmdlet() { throw new PSInvalidOperationException(Properties.Resources.SiteRemovalWithRegisteredHyperVHostsError); } + + LongRunningOperationResponse response; - FabricDeletionInput input = new FabricDeletionInput() + if (!this.Force.IsPresent) { - Properties = new FabricDeletionInputProperties() - }; - - LongRunningOperationResponse response = - RecoveryServicesClient.DeleteAzureSiteRecoveryFabric(this.Site.Name, input); + response = + RecoveryServicesClient.DeleteAzureSiteRecoveryFabric(this.Site.Name); + } + else + { + response = + RecoveryServicesClient.PurgeAzureSiteRecoveryFabric(this.Site.Name); + } JobResponse jobResponse = RecoveryServicesClient From bd405a7c3289aec49bb62ca51e228fcf15625722 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Tue, 16 Feb 2016 11:51:03 +0530 Subject: [PATCH 27/46] Creation of RP supported with RP file --- .../Properties/Resources.Designer.cs | 27 +++++++ .../Properties/Resources.resx | 9 +++ .../EditAzureSiteRecoveryRecoveryPlan.cs | 50 +++++++++--- .../NewAzureSiteRecoveryRecoveryPlan.cs | 80 +++++++++++++++++-- .../UpdateAzureSiteRecoveryRecoveryPlan.cs | 22 ++--- 5 files changed, 161 insertions(+), 27 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs index c483dec36656..87966f9f914b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs @@ -151,6 +151,15 @@ internal static string FileNotFound { } } + /// + /// Looks up a localized string similar to Group "{0}" not found for recovery plan "{1}". + /// + internal static string GroupNotFoundInRecoveryPlan { + get { + return ResourceManager.GetString("GroupNotFoundInRecoveryPlan", resourceCulture); + } + } + /// /// Looks up a localized string similar to Calls using ID based parameter {0} will not be supported from next release. Please use its corresponding full object parameter instead.. /// @@ -658,6 +667,24 @@ internal static string VirtualMachineNotFound { } } + /// + /// Looks up a localized string similar to Virtual Machine "{0}" is already part of Group "{1}" for recovery plan "{1}". + /// + internal static string VMAlreadyPartOfGroup { + get { + return ResourceManager.GetString("VMAlreadyPartOfGroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Virtual Machine "{0}" not found in Group "{1}" for recovery plan "{1}". + /// + internal static string VMNotFoundInGroup { + get { + return ResourceManager.GetString("VMNotFoundInGroup", resourceCulture); + } + } + /// /// Looks up a localized string similar to Waiting for completion. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx index 01a0e22d774b..fa786b3f706a 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx @@ -322,4 +322,13 @@ Please provide a storage account with the same location as that of the vault. File "{0}" already exists. Specify a different name or path. + + Group "{0}" not found for recovery plan "{1}" + + + Virtual Machine "{0}" is already part of Group "{1}" for recovery plan "{1}" + + + Virtual Machine "{0}" not found in Group "{1}" for recovery plan "{1}" + \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs index 801587e31a6f..d593c640d6d8 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs @@ -95,11 +95,17 @@ public override void ExecuteSiteRecoveryCmdlet() break; case ASRParameterSets.RemoveGroup: tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.CompareOrdinal(g.Name, RemoveGroup.Name) == 0); + if (tempGroup != null) { this.RecoveryPlan.Groups.Remove(tempGroup); this.RecoveryPlan = this.RecoveryPlan.RefreshASRRecoveryPlanGroupNames(); } + else + { + throw new PSArgumentException(string.Format(Properties.Resources.GroupNotFoundInRecoveryPlan, this.RemoveGroup.Name, this.RecoveryPlan.FriendlyName)); + } + break; case ASRParameterSets.AddProtectedEntities: foreach (ASRProtectionEntity pe in AddProtectedEntities) @@ -112,15 +118,27 @@ public override void ExecuteSiteRecoveryCmdlet() ReplicationProtectedItemResponse replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(fabricName, - pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, + ARMResourceTypeConstants.ReplicationProtectedItems)); + + tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.Compare(g.Name, Group.Name, StringComparison.OrdinalIgnoreCase) == 0); - //RecoveryPlanProtectedItem recoveryPlanProtectedItem = new RecoveryPlanProtectedItem(); - //recoveryPlanProtectedItem.Id = replicationProtectedItemResponse.ReplicationProtectedItem.Id; - tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.CompareOrdinal(g.Name, Group.Name) == 0); if (tempGroup != null) { + foreach (ASRRecoveryPlanGroup gp in this.RecoveryPlan.Groups) + { + if(gp.ReplicationProtectedItems.Any(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0)) + { + throw new PSArgumentException(string.Format(Properties.Resources.VMAlreadyPartOfGroup, pe.FriendlyName, gp.Name, this.RecoveryPlan.FriendlyName)); + } + } + this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.Add(replicationProtectedItemResponse.ReplicationProtectedItem); - } + } + else + { + throw new PSArgumentException(string.Format(Properties.Resources.GroupNotFoundInRecoveryPlan, this.Group.Name, this.RecoveryPlan.FriendlyName)); + } } break; case ASRParameterSets.RemoveProtectedEntities: @@ -134,18 +152,30 @@ public override void ExecuteSiteRecoveryCmdlet() ReplicationProtectedItemResponse replicationProtectedItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(fabricName, - pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems)); + pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, + ARMResourceTypeConstants.ReplicationProtectedItems)); + + tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.Compare(g.Name, Group.Name, StringComparison.OrdinalIgnoreCase) == 0); - tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.CompareOrdinal(g.Name, Group.Name) == 0); if (tempGroup != null) { - //RecoveryPlanProtectedItem tempRecoveryPlanProtectedItem = this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.FirstOrDefault(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0); - var ReplicationProtectedItem = this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.FirstOrDefault(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0); + var ReplicationProtectedItem = + this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems. + FirstOrDefault(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0); + if (ReplicationProtectedItem != null) { this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems.Remove(ReplicationProtectedItem); } - } + else + { + throw new PSArgumentException(string.Format(Properties.Resources.VMNotFoundInGroup, pe.FriendlyName, this.Group.Name, this.RecoveryPlan.FriendlyName)); + } + } + else + { + throw new PSArgumentException(string.Format(Properties.Resources.GroupNotFoundInRecoveryPlan, this.Group.Name, this.RecoveryPlan.FriendlyName)); + } } break; }; diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs index e895817539cd..8916c5d51c76 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs @@ -19,6 +19,8 @@ using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; using System.Collections.Generic; +using System.IO; +using Newtonsoft.Json; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -43,6 +45,11 @@ public class NewAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase /// public string failoverDeploymentModel; + /// + /// Gets or sets recovery plan object + /// + RecoveryPlan recoveryPlan = null; + #region Parameters [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)] @@ -99,6 +106,12 @@ public class NewAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase [ValidateNotNullOrEmpty] public ASRProtectionEntity[] ProtectionEntityList { get; set; } + /// + /// Gets or sets RP JSON FilePath. + /// + [Parameter(ParameterSetName = ASRParameterSets.ByRPFile, Mandatory = true)] + public string Path { get; set; } + #endregion Parameters /// @@ -125,15 +138,38 @@ public override void ExecuteSiteRecoveryCmdlet() this.primaryserver = this.PrimarySite.ID; this.recoveryserver = Constants.AzureContainer; break; + case ASRParameterSets.ByRPFile: + + if (!File.Exists(this.Path)) + { + throw new FileNotFoundException(string.Format(Properties.Resources.FileNotFound, this.Path)); ; + } + + string filePath = this.Path; + + using (System.IO.StreamReader file = new System.IO.StreamReader(filePath)) + { + recoveryPlan = JsonConvert.DeserializeObject(file.ReadToEnd(), new RecoveryPlanActionDetailsConverter()); + } + + break; } - this.CreateReplicationPlan(); + + if (string.Compare(this.ParameterSetName, ASRParameterSets.ByRPFile, StringComparison.OrdinalIgnoreCase) == 0) + { + CreateRecoveryPlan(recoveryPlan); + } + else + { + this.CreateRecoveryPlan(); + } } /// /// Creates Replication Plan /// - private void CreateReplicationPlan() + private void CreateRecoveryPlan() { CreateRecoveryPlanInputProperties createRecoveryPlanInputProperties = new CreateRecoveryPlanInputProperties() { @@ -165,22 +201,21 @@ private void CreateReplicationPlan() string VmId = null; - switch(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails.InstanceType) + switch (replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails.InstanceType) { case Constants.HyperVReplicaAzureReplicationDetails: VmId = ((HyperVReplicaAzureReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails).VmId; break; - + case Constants.HyperVReplica2012ReplicationDetails: - VmId = ((HyperVReplica2012ReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails).VmId; - break; + VmId = ((HyperVReplica2012ReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails).VmId; + break; }; RecoveryPlanProtectedItem recoveryPlanProtectedItem = new RecoveryPlanProtectedItem(); recoveryPlanProtectedItem.Id = replicationProtectedItemResponse.ReplicationProtectedItem.Id; recoveryPlanProtectedItem.VirtualMachineId = VmId; recoveryPlanGroup.ReplicationProtectedItems.Add(recoveryPlanProtectedItem); - } createRecoveryPlanInputProperties.Groups.Add(recoveryPlanGroup); @@ -190,8 +225,37 @@ private void CreateReplicationPlan() Properties = createRecoveryPlanInputProperties }; + CreateRecoveryPlan(this.Name, createRecoveryPlanInput); + } + + /// + /// Create Recovery Plan: By Service object + /// + private void CreateRecoveryPlan(RecoveryPlan recoveryPlan) + { + CreateRecoveryPlanInputProperties createRecoveryPlanInputProperties = new CreateRecoveryPlanInputProperties() + { + FailoverDeploymentModel = recoveryPlan.Properties.FailoverDeploymentModel, + Groups = recoveryPlan.Properties.Groups, + PrimaryFabricId = recoveryPlan.Properties.PrimaryFabricId, + RecoveryFabricId = recoveryPlan.Properties.RecoveryFabricId + }; + + CreateRecoveryPlanInput createRecoveryPlanInput = new CreateRecoveryPlanInput() + { + Properties = createRecoveryPlanInputProperties + }; + + CreateRecoveryPlan(recoveryPlan.Name, createRecoveryPlanInput); + } + + /// + /// Create Replication Plan: Utility call + /// + private void CreateRecoveryPlan(string recoveryPlanName, CreateRecoveryPlanInput createRecoveryPlanInput) + { LongRunningOperationResponse response = - RecoveryServicesClient.CreateAzureSiteRecoveryRecoveryPlan(this.Name, createRecoveryPlanInput); + RecoveryServicesClient.CreateAzureSiteRecoveryRecoveryPlan(recoveryPlanName, createRecoveryPlanInput); JobResponse jobResponse = RecoveryServicesClient diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs index dc0caf122896..58fabf1c8385 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs @@ -57,28 +57,32 @@ public override void ExecuteSiteRecoveryCmdlet() switch (this.ParameterSetName) { case ASRParameterSets.ByRPObject: - UpdateReplicationPlan(this.RecoveryPlan); + UpdateRecoveryPlan(this.RecoveryPlan); break; case ASRParameterSets.ByRPFile: + if (!File.Exists(this.Path)) { throw new FileNotFoundException(string.Format(Properties.Resources.FileNotFound, this.Path)); ; } + string filePath = this.Path; RecoveryPlan recoveryPlan = null; + using (System.IO.StreamReader file = new System.IO.StreamReader(filePath)) { recoveryPlan = JsonConvert.DeserializeObject(file.ReadToEnd(), new RecoveryPlanActionDetailsConverter()); } - UpdateReplicationPlan(recoveryPlan); + + UpdateRecoveryPlan(recoveryPlan); break; } } /// - /// Update Replication Plan: By powerShell object + /// Update Recovery Plan: By powerShell Recovery Plan object /// - private void UpdateReplicationPlan(ASRRecoveryPlan asrRecoveryPlan) + private void UpdateRecoveryPlan(ASRRecoveryPlan asrRecoveryPlan) { UpdateRecoveryPlanInputProperties updateRecoveryPlanInputProperties = new UpdateRecoveryPlanInputProperties() { @@ -124,13 +128,13 @@ private void UpdateReplicationPlan(ASRRecoveryPlan asrRecoveryPlan) Properties = updateRecoveryPlanInputProperties }; - UpdateReplicationPlan(asrRecoveryPlan.Name, updateRecoveryPlanInput); + UpdateRecoveryPlan(asrRecoveryPlan.Name, updateRecoveryPlanInput); } /// - /// Update Replication Plan: By Service object + /// Update Recovery Plan: By Service object /// - private void UpdateReplicationPlan(RecoveryPlan recoveryPlan) + private void UpdateRecoveryPlan(RecoveryPlan recoveryPlan) { UpdateRecoveryPlanInputProperties updateRecoveryPlanInputProperties = new UpdateRecoveryPlanInputProperties() { @@ -142,13 +146,13 @@ private void UpdateReplicationPlan(RecoveryPlan recoveryPlan) Properties = updateRecoveryPlanInputProperties }; - UpdateReplicationPlan(recoveryPlan.Name, updateRecoveryPlanInput); + UpdateRecoveryPlan(recoveryPlan.Name, updateRecoveryPlanInput); } /// /// Update Replication Plan: Utility call /// - private void UpdateReplicationPlan(string recoveryPlanName, UpdateRecoveryPlanInput updateRecoveryPlanInput) + private void UpdateRecoveryPlan(string recoveryPlanName, UpdateRecoveryPlanInput updateRecoveryPlanInput) { LongRunningOperationResponse response = RecoveryServicesClient.UpdateAzureSiteRecoveryRecoveryPlan(recoveryPlanName, updateRecoveryPlanInput); From 6dbea73991760e971396bb06f854992474e1196c Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Mon, 22 Feb 2016 18:00:54 +0530 Subject: [PATCH 28/46] 1) Fix for bug 6635655 2) Purge Protection support --- ...RecoveryReplicationProtectedItemsClient.cs | 17 +++++++++ .../Models/PSRecoveryPlanObjects.cs | 4 +++ .../Properties/Resources.Designer.cs | 4 +-- .../Properties/Resources.resx | 4 +-- .../SetAzureSiteRecoveryProtectionEntity.cs | 36 ++++++++++++------- .../EditAzureSiteRecoveryRecoveryPlan.cs | 19 +++++----- .../NewAzureSiteRecoveryRecoveryPlan.cs | 16 ++++----- .../UpdateAzureSiteRecoveryRecoveryPlan.cs | 26 +++++++------- 8 files changed, 80 insertions(+), 46 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs index b6962be5dd23..105894b89476 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryReplicationProtectedItemsClient.cs @@ -128,6 +128,23 @@ public LongRunningOperationResponse DisableProtection(string fabricName, this.GetRequestHeaders()); } + /// + /// Purges Replicated Protected Item. + /// + /// Protection Container ID + /// Virtual Machine ID or Replication group Id + /// Job response + public LongRunningOperationResponse PurgeProtection(string fabricName, + string protectionContainerName, + string replicationProtectedItemName) + { + return this.GetSiteRecoveryClient().ReplicationProtectedItem.BeginPurgeProtection( + fabricName, + protectionContainerName, + replicationProtectedItemName, + this.GetRequestHeaders()); + } + /// /// Starts Planned Failover /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs index cd534655992f..15504f8c6d35 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSRecoveryPlanObjects.cs @@ -41,6 +41,10 @@ public ASRRecoveryPlanGroup(RecoveryPlanGroup recoveryPlanGroup, IList item.Id.ToLower()); this.ReplicationProtectedItems = replicationProtectedItems.Where(rpi => replicationProtectedItemList.Contains(rpi.Id.ToLower())).ToList(); } + else + { + this.ReplicationProtectedItems = new List(); + } } } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs index 87966f9f914b..afb2f6096183 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs @@ -668,7 +668,7 @@ internal static string VirtualMachineNotFound { } /// - /// Looks up a localized string similar to Virtual Machine "{0}" is already part of Group "{1}" for recovery plan "{1}". + /// Looks up a localized string similar to Virtual Machine "{0}" is already part of Group "{1}" for recovery plan "{2}". /// internal static string VMAlreadyPartOfGroup { get { @@ -677,7 +677,7 @@ internal static string VMAlreadyPartOfGroup { } /// - /// Looks up a localized string similar to Virtual Machine "{0}" not found in Group "{1}" for recovery plan "{1}". + /// Looks up a localized string similar to Virtual Machine "{0}" not found in Group "{1}" for recovery plan "{2}". /// internal static string VMNotFoundInGroup { get { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx index fa786b3f706a..b160d48c509f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx @@ -326,9 +326,9 @@ Please provide a storage account with the same location as that of the vault.Group "{0}" not found for recovery plan "{1}" - Virtual Machine "{0}" is already part of Group "{1}" for recovery plan "{1}" + Virtual Machine "{0}" is already part of Group "{1}" for recovery plan "{2}" - Virtual Machine "{0}" not found in Group "{1}" for recovery plan "{1}" + Virtual Machine "{0}" not found in Group "{1}" for recovery plan "{2}" \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs index 98d2832bb41b..7de4aca6a2bf 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs @@ -219,24 +219,36 @@ public override void ExecuteSiteRecoveryCmdlet() } else { - DisableProtectionInput input = new DisableProtectionInput(); - input.Properties = new DisableProtectionInputProperties() - { - ProviderSettings = new DisableProtectionProviderSpecificInput() - }; - // fetch the latest PE object ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), this.ProtectionEntity.ProtectionContainerId, this.ProtectionEntity.Name); ProtectableItem protectableItem = protectableItemResponse.ProtectableItem; - this.response = - RecoveryServicesClient.DisableProtection( - Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), - Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), - Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems), - input); + if (!this.Force.IsPresent) + { + DisableProtectionInput input = new DisableProtectionInput(); + input.Properties = new DisableProtectionInputProperties() + { + ProviderSettings = new DisableProtectionProviderSpecificInput() + }; + + this.response = + RecoveryServicesClient.DisableProtection( + Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), + Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), + Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems), + input); + } + else + { + this.response = + RecoveryServicesClient.PurgeProtection( + Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), + Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), + Utilities.GetValueFromArmId(protectableItem.Properties.ReplicationProtectedItemId, ARMResourceTypeConstants.ReplicationProtectedItems) + ); + } } jobResponse = diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs index d593c640d6d8..1600efc8511c 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs @@ -94,7 +94,7 @@ public override void ExecuteSiteRecoveryCmdlet() this.RecoveryPlan.Groups.Add(new ASRRecoveryPlanGroup("Group " + (RecoveryPlan.Groups.Count - 1).ToString(), recoveryPlanGroup)); break; case ASRParameterSets.RemoveGroup: - tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.CompareOrdinal(g.Name, RemoveGroup.Name) == 0); + tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.Compare(g.Name, RemoveGroup.Name, StringComparison.OrdinalIgnoreCase) == 0); if (tempGroup != null) { @@ -127,7 +127,10 @@ public override void ExecuteSiteRecoveryCmdlet() { foreach (ASRRecoveryPlanGroup gp in this.RecoveryPlan.Groups) { - if(gp.ReplicationProtectedItems.Any(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0)) + if (gp.ReplicationProtectedItems == null) + continue; + + if (gp.ReplicationProtectedItems.Any(pi => String.Compare(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id, StringComparison.OrdinalIgnoreCase) == 0)) { throw new PSArgumentException(string.Format(Properties.Resources.VMAlreadyPartOfGroup, pe.FriendlyName, gp.Name, this.RecoveryPlan.FriendlyName)); } @@ -150,18 +153,16 @@ public override void ExecuteSiteRecoveryCmdlet() RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(fabricName, pe.ProtectionContainerId, pe.Name); - ReplicationProtectedItemResponse replicationProtectedItemResponse = - RecoveryServicesClient.GetAzureSiteRecoveryReplicationProtectedItem(fabricName, - pe.ProtectionContainerId, Utilities.GetValueFromArmId(protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, - ARMResourceTypeConstants.ReplicationProtectedItems)); - tempGroup = this.RecoveryPlan.Groups.FirstOrDefault(g => String.Compare(g.Name, Group.Name, StringComparison.OrdinalIgnoreCase) == 0); if (tempGroup != null) { var ReplicationProtectedItem = - this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)].ReplicationProtectedItems. - FirstOrDefault(pi => String.CompareOrdinal(pi.Id, replicationProtectedItemResponse.ReplicationProtectedItem.Id) == 0); + this.RecoveryPlan.Groups[RecoveryPlan.Groups.IndexOf(tempGroup)]. + ReplicationProtectedItems. + FirstOrDefault(pi => String.Compare(pi.Id, + protectableItemResponse.ProtectableItem.Properties.ReplicationProtectedItemId, + StringComparison.OrdinalIgnoreCase) == 0); if (ReplicationProtectedItem != null) { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs index 8916c5d51c76..0442bf586b77 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs @@ -201,16 +201,14 @@ private void CreateRecoveryPlan() string VmId = null; - switch (replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails.InstanceType) + if(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails.GetType() == typeof(HyperVReplicaAzureReplicationDetails)) + { + VmId = ((HyperVReplicaAzureReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails).VmId; + } + else if(replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails.GetType() == typeof(HyperVReplica2012ReplicationDetails)) { - case Constants.HyperVReplicaAzureReplicationDetails: - VmId = ((HyperVReplicaAzureReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails).VmId; - break; - - case Constants.HyperVReplica2012ReplicationDetails: - VmId = ((HyperVReplica2012ReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails).VmId; - break; - }; + VmId = ((HyperVReplica2012ReplicationDetails)replicationProtectedItemResponse.ReplicationProtectedItem.Properties.ProviderSpecificDetails).VmId; + } RecoveryPlanProtectedItem recoveryPlanProtectedItem = new RecoveryPlanProtectedItem(); recoveryPlanProtectedItem.Id = replicationProtectedItemResponse.ReplicationProtectedItem.Id; diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs index 58fabf1c8385..888a7bcd4cef 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs @@ -94,22 +94,24 @@ private void UpdateRecoveryPlan(ASRRecoveryPlan asrRecoveryPlan) RecoveryPlanGroup recoveryPlanGroup = new RecoveryPlanGroup() { GroupType = asrRecoveryPlanGroup.GroupType, - ReplicationProtectedItems = asrRecoveryPlanGroup.ReplicationProtectedItems.Select(item => - { + + // Initialize ReplicationProtectedItems with empty List if asrRecoveryPlanGroup.ReplicationProtectedItems is null + // otherwise assign respective values + ReplicationProtectedItems = asrRecoveryPlanGroup.ReplicationProtectedItems == null ? new List() : + asrRecoveryPlanGroup.ReplicationProtectedItems.Select(item => + { var newItem = new RecoveryPlanProtectedItem(item.Id); string VmId = null; - switch (item.Properties.ProviderSpecificDetails.InstanceType) + if (item.Properties.ProviderSpecificDetails.GetType() == typeof(HyperVReplicaAzureReplicationDetails)) { - case Constants.HyperVReplicaAzureReplicationDetails: - VmId = ((HyperVReplicaAzureReplicationDetails)item.Properties.ProviderSpecificDetails).VmId; - break; - - case Constants.HyperVReplica2012ReplicationDetails: - VmId = ((HyperVReplica2012ReplicationDetails)item.Properties.ProviderSpecificDetails).VmId; - break; - }; + VmId = ((HyperVReplicaAzureReplicationDetails)item.Properties.ProviderSpecificDetails).VmId; + } + else if (item.Properties.ProviderSpecificDetails.GetType() == typeof(HyperVReplica2012ReplicationDetails)) + { + VmId = ((HyperVReplica2012ReplicationDetails)item.Properties.ProviderSpecificDetails).VmId; + } newItem.VirtualMachineId = VmId; @@ -163,6 +165,6 @@ private void UpdateRecoveryPlan(string recoveryPlanName, UpdateRecoveryPlanInput WriteObject(new ASRJob(jobResponse.Job)); } - + } } From ffb64166c0cbb29b7e893ec34b8c5266d47343e9 Mon Sep 17 00:00:00 2001 From: Ramjot Singh Date: Fri, 4 Mar 2016 16:27:50 +0530 Subject: [PATCH 29/46] Fixing issues with Storage classification cmdlets. --- .../Classification/GetAzureSiteRecoveryStorageClassification.cs | 2 ++ .../GetAzureSiteRecoveryStorageClassificationMapping.cs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs index 3e7d37ce4a3e..baf6d03e67d8 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassification.cs @@ -66,6 +66,8 @@ public override void ExecuteSiteRecoveryCmdlet() storageClassifications.AddRange(entities); }); + Task.WaitAll(storageClassificationTask); + switch (this.ParameterSetName) { case ASRParameterSets.ByFriendlyName: diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs index 1078709764cf..a6a1e868a477 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs @@ -62,7 +62,7 @@ public override void ExecuteSiteRecoveryCmdlet() }; }); - base.WriteObject(psObject); + base.WriteObject(psObject, true); } } } From 2d48f7d7e54ecc63c6e29b09558d8415ebc75819 Mon Sep 17 00:00:00 2001 From: pattipaka Date: Tue, 15 Mar 2016 11:54:49 -0700 Subject: [PATCH 30/46] Move to Job SDK 2.0.0-preview --- .../Commands.HDInsight.Test.csproj | 2 +- .../Commands.HDInsight.Test/packages.config | 2 +- .../Commands.HDInsight.csproj | 2 +- .../GetAzureHDInsightJobOutputCommand.cs | 92 ++++++++++--------- .../JobCommands/InvokeHiveCommand.cs | 6 +- ...AzureHDInsightSqoopJobDefinitionCommand.cs | 7 ++ ...tStreamingMapReduceJobDefinitionCommand.cs | 9 +- .../StartAzureHDInsightJobCommand.cs | 5 - .../Job/AzureHDInsightSqoopJobDefinition.cs | 5 + ...DInsightStreamingMapReduceJobDefinition.cs | 4 +- .../Job/AzureHdInsightJobManagementClient.cs | 75 +++++---------- .../Models/Job/JobDisplayOutputType.cs | 5 - .../Commands.HDInsight/packages.config | 2 +- 13 files changed, 100 insertions(+), 116 deletions(-) diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj index f6442251cfca..a1e84f016f69 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -57,7 +57,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.1.1.0-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll + ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.2.0.0-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config index 5508f274b5d8..1cbbb1e74fad 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj index a819f7c80724..36d398591cd3 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj @@ -123,7 +123,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.1.1.0-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll + ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.2.0.0-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll False diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs index 4c00ea7e9519..91a14fc0c4c9 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs @@ -13,11 +13,14 @@ // ---------------------------------------------------------------------------------- using System.IO; +using System.Linq; using System.Management.Automation; using Hyak.Common; using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models.Job; using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.Azure.Commands.HDInsight.Models; +using Microsoft.Azure.Management.HDInsight.Job.Models; namespace Microsoft.Azure.Commands.HDInsight { @@ -43,17 +46,14 @@ public string ClusterName public string JobId { get; set; } [Parameter(Position = 2, - Mandatory = true, HelpMessage = "The default container name.")] public string DefaultContainer { get; set; } [Parameter(Position = 3, - Mandatory = true, HelpMessage = "The default storage account name.")] public string DefaultStorageAccountName { get; set; } [Parameter(Position = 4, - Mandatory = true, HelpMessage = "The default storage account key.")] public string DefaultStorageAccountKey { get; set; } @@ -80,77 +80,83 @@ public PSCredential HttpCredential [Parameter(HelpMessage = "Gets or sets the name of the resource group.")] public string ResourceGroupName { get; set; } - [Parameter(HelpMessage = "The type of job output.", ParameterSetName = "Display")] + [Parameter(HelpMessage = "The type of job output.")] public JobDisplayOutputType DisplayOutputType { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The type of output to download.", ParameterSetName = "Download")] - public JobDownloadOutputType DownloadOutputType { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The folder to save the output to.", ParameterSetName = "Download")] - public string Folder { get; set; } - #endregion + private IStorageAccess storageAccess = null; + public override void ExecuteCmdlet() { if (ResourceGroupName == null) { ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } - _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); - if (ParameterSetName == "Display") + if (DefaultContainer == null || DefaultStorageAccountName == null || DefaultStorageAccountKey == null) { - string output; - switch (DisplayOutputType) + var result = HDInsightManagementClient.GetCluster(ResourceGroupName, _clusterName); + + if (result == null || result.Count == 0) + { + throw new CloudException(string.Format("Couldn't find cluster {0}", _clusterName)); + } + + var cluster = result.FirstOrDefault(); + string resourceGroupName = ClusterConfigurationUtils.GetResourceGroupFromClusterId(cluster.Id); + var configuration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, "core-site"); + + if (configuration == null) + { + throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", _clusterName)); + } + + var DefaultStorageAccount = ClusterConfigurationUtils.GetDefaultStorageAccountDetails( + configuration, + cluster.Properties.ClusterVersion); + + if (DefaultStorageAccount == null) { - case JobDisplayOutputType.StandardError: - output = GetJobError(); - break; - case JobDisplayOutputType.TaskSummary: - output = GetJobTaskLogSummary(); - break; - default: - output = GetJobOutput(); - break; + throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", _clusterName)); } - WriteObject(output); + + DefaultContainer = DefaultStorageAccount.StorageContainerName; + DefaultStorageAccountName = DefaultStorageAccount.StorageAccountName; + DefaultStorageAccountKey = DefaultStorageAccount.StorageAccountKey; } - else + + storageAccess = new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + + _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); + + string output; + switch (DisplayOutputType) { - DownloadJobTaskLogs(); + case JobDisplayOutputType.StandardError: + output = GetJobError(); + break; + default: + output = GetJobOutput(); + break; } + WriteObject(output); } internal string GetJobOutput() { - var output = HDInsightJobClient.GetJobOutput(JobId, DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + var output = HDInsightJobClient.GetJobOutput(JobId, this.storageAccess); var outputStr = Convert(output); return outputStr; } private string GetJobError() { - var output = HDInsightJobClient.GetJobError(JobId, DefaultStorageAccountName, DefaultStorageAccountKey, - DefaultContainer); + var output = HDInsightJobClient.GetJobError(JobId, this.storageAccess); var outputStr = Convert(output); return outputStr; } - private string GetJobTaskLogSummary() - { - var output = HDInsightJobClient.GetJobTaskLogSummary(JobId, DefaultStorageAccountName, DefaultStorageAccountKey, - DefaultContainer); - var outputStr = Convert(output); - return outputStr; - } - - private void DownloadJobTaskLogs() - { - HDInsightJobClient.GetJobTaskLogSummary(JobId, DefaultStorageAccountName, DefaultStorageAccountKey, - DefaultContainer); - } - private static string Convert(Stream stream) { var reader = new StreamReader(stream); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs index 828a6339036c..3b17a8a0cb60 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs @@ -19,6 +19,7 @@ using Hyak.Common; using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.Azure.Management.HDInsight.Job.Models; namespace Microsoft.Azure.Commands.HDInsight { @@ -175,9 +176,10 @@ public override void ExecuteCmdlet() else { //get job error - output = Convert(HDInsightJobClient.GetJobError(jobid, DefaultStorageAccountName, DefaultStorageAccountKey, - DefaultContainer)); + IStorageAccess storageAccess = new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + output = Convert(HDInsightJobClient.GetJobError(jobid, storageAccess)); } + WriteObject(output); } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs index 5158108d9fe8..d18004eadb6f 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs @@ -55,6 +55,13 @@ public string Command set { job.Command = value; } } + [Parameter(HelpMessage = "The output location to use for the job.")] + public string LibDir + { + get { return job.LibDir; } + set { job.LibDir = value; } + } + #endregion public NewAzureHDInsightSqoopJobDefinitionCommand() diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs index 1a04745f5778..7280af0b05cf 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs @@ -49,7 +49,7 @@ public string StatusFolder } [Parameter(HelpMessage = "The command line environment for the mappers or the reducers.")] - public string[] CommandEnvironment { get; set; } + public Hashtable CommandEnvironment { get; set; } [Parameter(HelpMessage = "The parameters for the jobDetails.")] public Hashtable Defines { get; set; } @@ -88,7 +88,7 @@ public string Reducer public NewAzureHDInsightStreamingMapReduceJobDefinitionCommand() { Arguments = new string[] {}; - CommandEnvironment = new string[] {}; + CommandEnvironment = new Hashtable(); Defines = new Hashtable(); job = new AzureHDInsightStreamingMapReduceJobDefinition(); } @@ -100,9 +100,10 @@ public override void ExecuteCmdlet() job.Arguments.Add(arg); } - foreach (var cmdenv in CommandEnvironment) + var cmdEnvDic = CommandEnvironment.ToDictionary(false); + foreach (var cmdEnv in cmdEnvDic) { - job.CommandEnvironment.Add(cmdenv); + job.CommandEnvironment.Add(cmdEnv.Key, cmdEnv.Value.ToString()); } var defineDic = Defines.ToDictionary(false); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs index 4048cb4f7b7e..fdc2ab2b491c 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs @@ -95,11 +95,6 @@ public AzureHDInsightJob Execute() public JobSubmissionResponse SubmitJob() { - if (string.IsNullOrEmpty(JobDefinition.StatusFolder)) - { - JobDefinition.StatusFolder = Guid.NewGuid().ToString(); - } - JobSubmissionResponse jobCreationResults; var azureMapReduceJobDefinition = JobDefinition as AzureHDInsightMapReduceJobDefinition; diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightSqoopJobDefinition.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightSqoopJobDefinition.cs index e16e1647f05e..5c44578c9da2 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightSqoopJobDefinition.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightSqoopJobDefinition.cs @@ -35,5 +35,10 @@ public class AzureHDInsightSqoopJobDefinition : AzureHDInsightJobDefinition /// Gets or sets the name of the jobDetails. /// public string JobName { get; set; } + + /// + /// Gets or sets the name of the directory for libraries. + /// + public string LibDir { get; set; } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs index af282360b76f..0d441759b450 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs @@ -54,14 +54,14 @@ public class AzureHDInsightStreamingMapReduceJobDefinition : AzureHDInsightJobDe /// /// Gets the command line environment for the mappers or the reducers. /// - public IList CommandEnvironment { get; private set; } + public IDictionary CommandEnvironment { get; private set; } /// /// Initializes a new instance of the AzureHDInsightStreamingMapReduceJobDefinition class. /// public AzureHDInsightStreamingMapReduceJobDefinition() { - CommandEnvironment = new List(); + CommandEnvironment = new Dictionary(); Defines = new Dictionary(); } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs index 2cce7218df72..7685a2164ed8 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs @@ -28,7 +28,7 @@ public class AzureHdInsightJobManagementClient { public AzureHdInsightJobManagementClient(string clusterName, BasicAuthenticationCloudCredentials credential) { - HdInsightJobManagementClient = AzureSession.ClientFactory.CreateCustomClient(clusterName, credential); + HdInsightJobManagementClient = AzureSession.ClientFactory.CreateCustomClient(clusterName, credential, HDInsightJobManagementClient.HDInsightRetryPolicy); } /// @@ -44,13 +44,12 @@ public virtual JobSubmissionResponse SubmitHiveJob(AzureHDInsightHiveJobDefiniti { var hiveJobParams = new HiveJobSubmissionParameters { - Arguments = ConvertListToString(hiveJobDef.Arguments, "arg"), - Defines = ConvertDefinesToString(hiveJobDef.Defines), + Arguments = hiveJobDef.Arguments, + Defines = hiveJobDef.Defines, File = hiveJobDef.File, - Files = ConvertListToString(hiveJobDef.Files, "file"), + Files = hiveJobDef.Files, Query = hiveJobDef.Query, - StatusDir = hiveJobDef.StatusFolder, - UserName = HdInsightJobManagementClient.Credentials.Username + StatusDir = hiveJobDef.StatusFolder }; return HdInsightJobManagementClient.JobManagement.SubmitHiveJob(hiveJobParams); } @@ -59,14 +58,13 @@ public virtual JobSubmissionResponse SubmitMRJob(AzureHDInsightMapReduceJobDefin { var mapredJobParams = new MapReduceJobSubmissionParameters { - Arguments = ConvertListToString(mapredJobDef.Arguments, "arg"), - Defines = ConvertDefinesToString(mapredJobDef.Defines), - Files = ConvertListToString(mapredJobDef.Files, "file"), + Arguments = mapredJobDef.Arguments, + Defines = mapredJobDef.Defines, + Files = mapredJobDef.Files, JarClass = mapredJobDef.ClassName, - LibJars = ConvertListToString(mapredJobDef.LibJars, "jar"), + LibJars = mapredJobDef.LibJars, JarFile = mapredJobDef.JarFile, - StatusDir = mapredJobDef.StatusFolder, - UserName = HdInsightJobManagementClient.Credentials.Username + StatusDir = mapredJobDef.StatusFolder }; return HdInsightJobManagementClient.JobManagement.SubmitMapReduceJob(mapredJobParams); @@ -76,12 +74,11 @@ public virtual JobSubmissionResponse SubmitPigJob(AzureHDInsightPigJobDefinition { var pigJobParams = new PigJobSubmissionParameters { - Arguments = ConvertListToString(pigJobDef.Arguments, "arg"), - Files = ConvertListToString(pigJobDef.Files, "file"), + Arguments = pigJobDef.Arguments, + Files = pigJobDef.Files, StatusDir = pigJobDef.StatusFolder, File = pigJobDef.File, - Query = pigJobDef.Query, - UserName = HdInsightJobManagementClient.Credentials.Username + Query = pigJobDef.Query }; return HdInsightJobManagementClient.JobManagement.SubmitPigJob(pigJobParams); @@ -97,11 +94,10 @@ public virtual JobSubmissionResponse SubmitStreamingJob( Mapper = streamingJobDef.Mapper, Reducer = streamingJobDef.Reducer, File = streamingJobDef.File, - Defines = ConvertDefinesToString(streamingJobDef.Defines), - CmdEnv = ConvertListToString(streamingJobDef.CommandEnvironment, "cmdenv"), - Arguments = ConvertListToString(streamingJobDef.Arguments, "arg"), - StatusDir = streamingJobDef.StatusFolder, - UserName = HdInsightJobManagementClient.Credentials.Username + Defines = streamingJobDef.Defines, + CmdEnv = streamingJobDef.CommandEnvironment, + Arguments = streamingJobDef.Arguments, + StatusDir = streamingJobDef.StatusFolder }; return HdInsightJobManagementClient.JobManagement.SubmitMapReduceStreamingJob(streamingJobParams); @@ -113,9 +109,9 @@ public virtual JobSubmissionResponse SubmitSqoopJob(AzureHDInsightSqoopJobDefini { Command = sqoopJobDef.Command, File = sqoopJobDef.File, - Files = ConvertListToString(sqoopJobDef.Files, "file"), - StatusDir = sqoopJobDef.StatusFolder, - UserName = HdInsightJobManagementClient.Credentials.Username + Files = sqoopJobDef.Files, + LibDir = sqoopJobDef.LibDir, + StatusDir = sqoopJobDef.StatusFolder }; return HdInsightJobManagementClient.JobManagement.SubmitSqoopJob(sqoopJobParams); } @@ -135,39 +131,16 @@ public void StopJob(string jobId) HdInsightJobManagementClient.JobManagement.KillJob(jobId); } - public Stream GetJobOutput(string jobid, string storageAccountName, string storageAccountKey, string containerName) + public Stream GetJobOutput(string jobid, IStorageAccess storageAccess) { - var joboutput = HdInsightJobManagementClient.JobManagement.GetJobOutput(jobid, storageAccountName, storageAccountKey, containerName); + var joboutput = HdInsightJobManagementClient.JobManagement.GetJobOutput(jobid, storageAccess); return joboutput; } - public Stream GetJobError(string jobid, string storageAccountName, string storageAccountKey, string containerName) + public Stream GetJobError(string jobid, IStorageAccess storageAccess) { - var joboutput = HdInsightJobManagementClient.JobManagement.GetJobErrorLogs(jobid, storageAccountName, storageAccountKey, containerName); + var joboutput = HdInsightJobManagementClient.JobManagement.GetJobErrorLogs(jobid, storageAccess); return joboutput; } - - public Stream GetJobTaskLogSummary(string jobid, string storageAccountName, string storageAccountKey, string containerName) - { - var joboutput = HdInsightJobManagementClient.JobManagement.GetJobTaskLogSummary(jobid, storageAccountName, storageAccountKey, containerName); - return joboutput; - } - - public void DownloadJobTaskLogs(string jobid, string targetDirectory, string storageAccountName, - string storageAccountKey, string containerName) - { - HdInsightJobManagementClient.JobManagement.DownloadJobTaskLogs(jobid, targetDirectory, storageAccountName, storageAccountKey, containerName); - } - - public static string ConvertDefinesToString(IDictionary defines) - { - return defines.Count == 0 ? null : string.Format("&define={0}", string.Join("&define=", defines.Select(x => x.Key + "%3D" + x.Value).ToArray())); - } - - public static string ConvertListToString(IList list, string argtype) - { - var prefix = "&" + argtype + "="; - return list.Count == 0 ? null : string.Join(prefix, list.ToArray()); - } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/JobDisplayOutputType.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/JobDisplayOutputType.cs index dd120e91d161..1868d8de7b5b 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/JobDisplayOutputType.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/JobDisplayOutputType.cs @@ -11,11 +11,6 @@ public enum JobDisplayOutputType /// Specifies that the jobDetails output file to download is the stderr file. /// StandardError, - - /// - /// Specifies that the jobDetails output file to download is the logs/list.txt file. - /// - TaskSummary, } public enum JobDownloadOutputType diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config b/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config index 1b323da2b19f..1e0f7519877e 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config @@ -6,7 +6,7 @@ - + From a9c69cda9bbb1bfe7ad7b0335f301b2c656bbe95 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Wed, 16 Mar 2016 16:27:04 +0530 Subject: [PATCH 31/46] Fixing pipelining issues --- .../Network/GetAzureRMSiteRecoveryNetwork.cs | 4 ++-- .../Network/GetAzureRMSiteRecoveryNetworkMapping.cs | 4 ++-- .../Network/NewAzureRMSiteRecoveryNetworkMapping.cs | 4 ++-- .../Policy/RemoveAzureSiteRecoveryPolicy.cs | 2 +- .../UpdateAzureSiteRecoveryProtectionDirection.cs | 4 ++-- .../RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs | 2 +- .../RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs | 6 +++--- .../RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs | 2 +- .../RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs | 2 +- .../GetAzureSiteRecoveryStorageClassificationMapping.cs | 2 +- .../Commands.SiteRecovery/VM/SetAzureSiteRecoveryVM.cs | 4 ++-- 11 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetwork.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetwork.cs index 64176a9bc768..31ce71a13cf5 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetwork.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetwork.cs @@ -32,8 +32,8 @@ public class GetAzureRMSiteRecoveryNetwork : SiteRecoveryCmdletBase /// Gets or sets Server object. /// [Parameter(ParameterSetName = ASRParameterSets.ByServerObject, Mandatory = true, ValueFromPipeline = true)] - [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true)] - [Parameter(ParameterSetName = ASRParameterSets.ByFriendlyName, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByFriendlyName, Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ASRServer Server { get; set; } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs index 9b0bb9030fb7..363037e37cf4 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs @@ -31,8 +31,8 @@ public class GetAzureRMSiteRecoveryNetworkMapping : SiteRecoveryCmdletBase /// /// Gets or sets Primary Server object. /// - [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)] - [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ASRServer PrimaryServer { get; set; } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/NewAzureRMSiteRecoveryNetworkMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/NewAzureRMSiteRecoveryNetworkMapping.cs index f61df5a41732..720fd4a57d3d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/NewAzureRMSiteRecoveryNetworkMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/NewAzureRMSiteRecoveryNetworkMapping.cs @@ -32,8 +32,8 @@ public class NewAzureRMSiteRecoveryNetworkMapping : SiteRecoveryCmdletBase /// /// Gets or sets Primary Network object. /// - [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)] - [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ASRNetwork PrimaryNetwork { get; set; } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs index ec21ba20cba5..360f2df955fb 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs @@ -32,7 +32,7 @@ public class RemoveAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase /// /// Gets or sets Name of the Policy. /// - [Parameter(Mandatory = true)] + [Parameter(Mandatory = true, ValueFromPipeline = true)] public ASRPolicy Policy { get; set; } #endregion Parameters diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs index 273f746f4f80..002bcae84aa3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/UpdateAzureSiteRecoveryProtectionDirection.cs @@ -62,8 +62,8 @@ public class UpdateAzureSiteRecoveryProtection : SiteRecoveryCmdletBase /// /// Gets or sets Failover direction for the recovery plan. /// - [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = true)] - [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = true, ValueFromPipeline = false)] + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = true)] [ValidateSet( Constants.PrimaryToRecovery, Constants.RecoveryToPrimary)] diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs index 1600efc8511c..9963f7e6ebb2 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/EditAzureSiteRecoveryRecoveryPlan.cs @@ -34,7 +34,7 @@ public class EditAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase /// /// Gets or sets Name of the Recovery Plan. /// - [Parameter(Mandatory = true)] + [Parameter(Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ASRRecoveryPlan RecoveryPlan { get; set; } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs index 0442bf586b77..a33fa3c94cf7 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/NewAzureSiteRecoveryRecoveryPlan.cs @@ -100,9 +100,9 @@ public class NewAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase /// /// Gets or sets Replication Frequency of the Policy in seconds. /// - [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)] - [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] - [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ASRProtectionEntity[] ProtectionEntityList { get; set; } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs index 8814fbdf58f6..4084f51cacbc 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/RemoveAzureSiteRecoveryRecoveryPlan.cs @@ -38,7 +38,7 @@ public class RemoveAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase /// /// Gets or sets Name of the Recovery Plan. /// - [Parameter(Mandatory = true, ParameterSetName = ASRParameterSets.ByObject)] + [Parameter(Mandatory = true, ParameterSetName = ASRParameterSets.ByObject, ValueFromPipeline = true)] public ASRRecoveryPlan RecoveryPlan { get; set; } #endregion Parameters diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs index 888a7bcd4cef..ab34e22c7553 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/RecoveryPlan/UpdateAzureSiteRecoveryRecoveryPlan.cs @@ -36,7 +36,7 @@ public class UpdateAzureSiteRecoveryRecoveryPlan : SiteRecoveryCmdletBase /// /// Gets or sets Name of the Recovery Plan. /// - [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByRPObject, Mandatory = true, ValueFromPipeline = true)] public ASRRecoveryPlan RecoveryPlan { get; set; } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs index a6a1e868a477..0bfa25c7c27f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/GetAzureSiteRecoveryStorageClassificationMapping.cs @@ -19,7 +19,7 @@ public class GetAzureSiteRecoveryStorageClassificationMapping : SiteRecoveryCmdl /// /// Gets or sets name of classification. /// - [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.ByName, Mandatory = true)] [ValidateNotNullOrEmpty] public string Name { get; set; } #endregion diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/SetAzureSiteRecoveryVM.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/SetAzureSiteRecoveryVM.cs index e3f257f6f3db..0802b6a7fce2 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/SetAzureSiteRecoveryVM.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/VM/SetAzureSiteRecoveryVM.cs @@ -33,7 +33,7 @@ public class SetAzureSiteRecoveryVM : SiteRecoveryCmdletBase /// /// Gets or sets ID of the Virtual Machine. /// - [Parameter(Mandatory = true)] + [Parameter(Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ASRVirtualMachine VirtualMachine { get; set; } @@ -195,7 +195,7 @@ public override void ExecuteSiteRecoveryCmdlet() LongRunningOperationResponse response = RecoveryServicesClient.UpdateVmProperties( Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationFabrics), Utilities.GetValueFromArmId(this.VirtualMachine.ID, ARMResourceTypeConstants.ReplicationProtectionContainers), - this.VirtualMachine.Name, + replicationProtectedItemResponse.ReplicationProtectedItem.Name, input); JobResponse jobResponse = From b8b87254d72d25d245f0beb68454df5419a6a1bd Mon Sep 17 00:00:00 2001 From: pattipaka Date: Wed, 16 Mar 2016 14:57:14 -0700 Subject: [PATCH 32/46] Fix Invoke Hive command issues and job pagination feature --- .../GetAzureHDInsightJobCommand.cs | 13 ++- .../GetAzureHDInsightJobOutputCommand.cs | 84 ++++++++++--------- .../JobCommands/InvokeHiveCommand.cs | 51 ++++++----- .../Models/Job/AzureHDInsightJob.cs | 2 +- .../Job/AzureHdInsightJobManagementClient.cs | 5 ++ 5 files changed, 86 insertions(+), 69 deletions(-) diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs index 2dc17d721831..b78979d46332 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs @@ -62,20 +62,29 @@ public PSCredential HttpCredential HelpMessage = "The JobID of the jobDetails to stop.")] public string JobId { get; set; } + [Parameter(HelpMessage = "Gets or sets the number of jobs to retrieve.")] + public int NumOfJobs { get; set; } + [Parameter(HelpMessage = "Gets or sets the name of the resource group.")] public string ResourceGroupName { get; set; } #endregion - public override void ExecuteCmdlet() { if (ResourceGroupName == null) { ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } + _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); - if (JobId != null) + + if (NumOfJobs > 0) + { + var jobs = HDInsightJobClient.ListJobsAfterJobId(JobId, NumOfJobs).Select(job => new AzureHDInsightJob(job.Detail, HDInsightJobClient.ClusterName)); + WriteObject(jobs, true); + } + else if (JobId != null) { var job = HDInsightJobClient.GetJob(JobId); var jobDetails = new AzureHDInsightJob(job.JobDetail, HDInsightJobClient.ClusterName); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs index 91a14fc0c4c9..0c156fcbb3f7 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs @@ -21,6 +21,7 @@ using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Management.HDInsight.Job.Models; +using Microsoft.Azure.Management.HDInsight; namespace Microsoft.Azure.Commands.HDInsight { @@ -94,39 +95,7 @@ public override void ExecuteCmdlet() ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } - if (DefaultContainer == null || DefaultStorageAccountName == null || DefaultStorageAccountKey == null) - { - var result = HDInsightManagementClient.GetCluster(ResourceGroupName, _clusterName); - - if (result == null || result.Count == 0) - { - throw new CloudException(string.Format("Couldn't find cluster {0}", _clusterName)); - } - - var cluster = result.FirstOrDefault(); - string resourceGroupName = ClusterConfigurationUtils.GetResourceGroupFromClusterId(cluster.Id); - var configuration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, "core-site"); - - if (configuration == null) - { - throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", _clusterName)); - } - - var DefaultStorageAccount = ClusterConfigurationUtils.GetDefaultStorageAccountDetails( - configuration, - cluster.Properties.ClusterVersion); - - if (DefaultStorageAccount == null) - { - throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", _clusterName)); - } - - DefaultContainer = DefaultStorageAccount.StorageContainerName; - DefaultStorageAccountName = DefaultStorageAccount.StorageAccountName; - DefaultStorageAccountKey = DefaultStorageAccount.StorageAccountKey; - } - - storageAccess = new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + storageAccess = GetDefaultStorageAccess(ResourceGroupName, _clusterName); _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); @@ -134,25 +103,25 @@ public override void ExecuteCmdlet() switch (DisplayOutputType) { case JobDisplayOutputType.StandardError: - output = GetJobError(); + output = GetJobError(this.storageAccess); break; default: - output = GetJobOutput(); + output = GetJobOutput(this.storageAccess); break; } WriteObject(output); } - internal string GetJobOutput() + internal string GetJobOutput(IStorageAccess storageAccess) { - var output = HDInsightJobClient.GetJobOutput(JobId, this.storageAccess); + var output = HDInsightJobClient.GetJobOutput(JobId, storageAccess); var outputStr = Convert(output); return outputStr; } - private string GetJobError() + internal string GetJobError(IStorageAccess storageAccess) { - var output = HDInsightJobClient.GetJobError(JobId, this.storageAccess); + var output = HDInsightJobClient.GetJobError(JobId, storageAccess); var outputStr = Convert(output); return outputStr; } @@ -163,5 +132,42 @@ private static string Convert(Stream stream) var text = reader.ReadToEnd(); return text; } + + internal IStorageAccess GetDefaultStorageAccess(string ResourceGroupName, string clusterName) + { + if (DefaultContainer == null && DefaultStorageAccountName == null && DefaultStorageAccountKey == null) + { + var result = HDInsightManagementClient.GetCluster(ResourceGroupName, clusterName); + + if (result == null || result.Count == 0) + { + throw new CloudException(string.Format("Couldn't find cluster {0}", clusterName)); + } + + var cluster = result.FirstOrDefault(); + string resourceGroupName = ClusterConfigurationUtils.GetResourceGroupFromClusterId(cluster.Id); + var configuration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, "core-site"); + + if (configuration == null) + { + throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", clusterName)); + } + + var DefaultStorageAccount = ClusterConfigurationUtils.GetDefaultStorageAccountDetails( + configuration, + cluster.Properties.ClusterVersion); + + if (DefaultStorageAccount == null) + { + throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", clusterName)); + } + + DefaultContainer = DefaultStorageAccount.StorageContainerName; + DefaultStorageAccountName = DefaultStorageAccount.StorageAccountName; + DefaultStorageAccountKey = DefaultStorageAccount.StorageAccountKey; + } + + return new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs index 3b17a8a0cb60..c2a8d2a5a8cb 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs @@ -15,11 +15,13 @@ using System; using System.Collections; using System.IO; +using System.Linq; using System.Management.Automation; using Hyak.Common; using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Management.HDInsight.Job.Models; +using Microsoft.Azure.Commands.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight { @@ -46,8 +48,7 @@ public string[] Files set { hiveJobDefinitionCommand.Files = value; } } - [Parameter(Mandatory = true, - HelpMessage = "The output location to use for the job.")] + [Parameter(HelpMessage = "The output location to use for the job.")] public string StatusFolder { get { return hiveJobDefinitionCommand.StatusFolder; } @@ -89,13 +90,13 @@ public SwitchParameter RunAsFileJob set { hiveJobDefinitionCommand.RunAsFileJob = value; } } - [Parameter(Mandatory = true, HelpMessage = "The default container name.")] + [Parameter(HelpMessage = "The default container name.")] public string DefaultContainer { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The default storage account name.")] + [Parameter(HelpMessage = "The default storage account name.")] public string DefaultStorageAccountName { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The default storage account key.")] + [Parameter(HelpMessage = "The default storage account key.")] public string DefaultStorageAccountKey { get; set; } #endregion @@ -114,7 +115,6 @@ public override void ExecuteCmdlet() var resourceGroup = SessionState.PSVariable.Get(UseAzureHDInsightClusterCommand.CurrentResourceGroup).Value.ToString(); - _clusterName = clusterConnection; _credential = new BasicAuthenticationCloudCredentials { Username = clusterCred.UserName, @@ -156,38 +156,35 @@ public override void ExecuteCmdlet() }; var job = waitJobCommand.WaitJob(); + + _clusterName = clusterConnection.Substring(0, clusterConnection.IndexOf('.')); + + var getOutputCommand = new GetAzureHDInsightJobOutputCommand + { + HttpCredential = clusterCred, + ResourceGroupName = resourceGroup, + ClusterName = clusterConnection, + DefaultContainer = DefaultContainer, + DefaultStorageAccountName = DefaultStorageAccountName, + DefaultStorageAccountKey = DefaultStorageAccountKey, + JobId = jobid + }; + + var storageAccess = getOutputCommand.GetDefaultStorageAccess(resourceGroup, _clusterName); + string output; if (job.ExitValue == 0) { //get job output - var getOutputCommand = new GetAzureHDInsightJobOutputCommand - { - HttpCredential = clusterCred, - ResourceGroupName = resourceGroup, - ClusterName = clusterConnection, - DefaultContainer = DefaultContainer, - DefaultStorageAccountName = DefaultStorageAccountName, - DefaultStorageAccountKey = DefaultStorageAccountKey, - JobId = jobid - }; - - output = getOutputCommand.GetJobOutput(); + output = getOutputCommand.GetJobOutput(storageAccess); } else { //get job error - IStorageAccess storageAccess = new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); - output = Convert(HDInsightJobClient.GetJobError(jobid, storageAccess)); + output = getOutputCommand.GetJobError(storageAccess); } WriteObject(output); } - - private static string Convert(Stream stream) - { - var reader = new StreamReader(stream); - var text = reader.ReadToEnd(); - return text; - } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs index 0f3b54da3136..542cf463fdcb 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs @@ -38,7 +38,7 @@ public AzureHDInsightJob(JobDetailRootJsonObject jobDetails, string cluster) User = jobDetails.User; Callback = jobDetails.Callback; Completed = jobDetails.Completed; - StatusFolder = jobDetails.Userargs.Statusdir.ToString(); + StatusFolder = jobDetails.Userargs.Statusdir != null ? jobDetails.Userargs.Statusdir.ToString() : string.Empty; } /// diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs index 7685a2164ed8..6f62df77901b 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs @@ -126,6 +126,11 @@ public virtual JobListResponse ListJobs() return HdInsightJobManagementClient.JobManagement.ListJobs(); } + public virtual JobListResponse ListJobsAfterJobId(string jobId, int numberOfJobs) + { + return HdInsightJobManagementClient.JobManagement.ListJobsAfterJobId(jobId, numberOfJobs); + } + public void StopJob(string jobId) { HdInsightJobManagementClient.JobManagement.KillJob(jobId); From 93e26008c0a5582cac1acdd999a33060e7239761 Mon Sep 17 00:00:00 2001 From: pattipaka Date: Tue, 15 Mar 2016 11:54:49 -0700 Subject: [PATCH 33/46] Move to Job SDK 2.0.0-preview --- .../Commands.HDInsight.Test.csproj | 2 +- .../Commands.HDInsight.Test/packages.config | 2 +- .../Commands.HDInsight.csproj | 2 +- .../GetAzureHDInsightJobOutputCommand.cs | 92 ++++++++++--------- .../JobCommands/InvokeHiveCommand.cs | 6 +- ...AzureHDInsightSqoopJobDefinitionCommand.cs | 7 ++ ...tStreamingMapReduceJobDefinitionCommand.cs | 9 +- .../StartAzureHDInsightJobCommand.cs | 5 - .../Job/AzureHDInsightSqoopJobDefinition.cs | 5 + ...DInsightStreamingMapReduceJobDefinition.cs | 4 +- .../Job/AzureHdInsightJobManagementClient.cs | 75 +++++---------- .../Models/Job/JobDisplayOutputType.cs | 5 - .../Commands.HDInsight/packages.config | 2 +- 13 files changed, 100 insertions(+), 116 deletions(-) diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj index bf82c1060aa4..cb6410f53bcb 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -56,7 +56,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.1.1.0-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll + ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.2.0.0-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll ..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config index 8f0bcd9399c1..7686e59dae91 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj index ba4d20dae30a..1b69863e4dbd 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj @@ -127,7 +127,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.1.1.0-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll + ..\..\..\packages\Microsoft.Azure.Management.HDInsight.Job.2.0.0-preview\lib\net40\Microsoft.Azure.Management.HDInsight.Job.dll False diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs index 4c00ea7e9519..91a14fc0c4c9 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs @@ -13,11 +13,14 @@ // ---------------------------------------------------------------------------------- using System.IO; +using System.Linq; using System.Management.Automation; using Hyak.Common; using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models.Job; using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.Azure.Commands.HDInsight.Models; +using Microsoft.Azure.Management.HDInsight.Job.Models; namespace Microsoft.Azure.Commands.HDInsight { @@ -43,17 +46,14 @@ public string ClusterName public string JobId { get; set; } [Parameter(Position = 2, - Mandatory = true, HelpMessage = "The default container name.")] public string DefaultContainer { get; set; } [Parameter(Position = 3, - Mandatory = true, HelpMessage = "The default storage account name.")] public string DefaultStorageAccountName { get; set; } [Parameter(Position = 4, - Mandatory = true, HelpMessage = "The default storage account key.")] public string DefaultStorageAccountKey { get; set; } @@ -80,77 +80,83 @@ public PSCredential HttpCredential [Parameter(HelpMessage = "Gets or sets the name of the resource group.")] public string ResourceGroupName { get; set; } - [Parameter(HelpMessage = "The type of job output.", ParameterSetName = "Display")] + [Parameter(HelpMessage = "The type of job output.")] public JobDisplayOutputType DisplayOutputType { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The type of output to download.", ParameterSetName = "Download")] - public JobDownloadOutputType DownloadOutputType { get; set; } - - [Parameter(Mandatory = true, HelpMessage = "The folder to save the output to.", ParameterSetName = "Download")] - public string Folder { get; set; } - #endregion + private IStorageAccess storageAccess = null; + public override void ExecuteCmdlet() { if (ResourceGroupName == null) { ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } - _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); - if (ParameterSetName == "Display") + if (DefaultContainer == null || DefaultStorageAccountName == null || DefaultStorageAccountKey == null) { - string output; - switch (DisplayOutputType) + var result = HDInsightManagementClient.GetCluster(ResourceGroupName, _clusterName); + + if (result == null || result.Count == 0) + { + throw new CloudException(string.Format("Couldn't find cluster {0}", _clusterName)); + } + + var cluster = result.FirstOrDefault(); + string resourceGroupName = ClusterConfigurationUtils.GetResourceGroupFromClusterId(cluster.Id); + var configuration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, "core-site"); + + if (configuration == null) + { + throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", _clusterName)); + } + + var DefaultStorageAccount = ClusterConfigurationUtils.GetDefaultStorageAccountDetails( + configuration, + cluster.Properties.ClusterVersion); + + if (DefaultStorageAccount == null) { - case JobDisplayOutputType.StandardError: - output = GetJobError(); - break; - case JobDisplayOutputType.TaskSummary: - output = GetJobTaskLogSummary(); - break; - default: - output = GetJobOutput(); - break; + throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", _clusterName)); } - WriteObject(output); + + DefaultContainer = DefaultStorageAccount.StorageContainerName; + DefaultStorageAccountName = DefaultStorageAccount.StorageAccountName; + DefaultStorageAccountKey = DefaultStorageAccount.StorageAccountKey; } - else + + storageAccess = new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + + _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); + + string output; + switch (DisplayOutputType) { - DownloadJobTaskLogs(); + case JobDisplayOutputType.StandardError: + output = GetJobError(); + break; + default: + output = GetJobOutput(); + break; } + WriteObject(output); } internal string GetJobOutput() { - var output = HDInsightJobClient.GetJobOutput(JobId, DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + var output = HDInsightJobClient.GetJobOutput(JobId, this.storageAccess); var outputStr = Convert(output); return outputStr; } private string GetJobError() { - var output = HDInsightJobClient.GetJobError(JobId, DefaultStorageAccountName, DefaultStorageAccountKey, - DefaultContainer); + var output = HDInsightJobClient.GetJobError(JobId, this.storageAccess); var outputStr = Convert(output); return outputStr; } - private string GetJobTaskLogSummary() - { - var output = HDInsightJobClient.GetJobTaskLogSummary(JobId, DefaultStorageAccountName, DefaultStorageAccountKey, - DefaultContainer); - var outputStr = Convert(output); - return outputStr; - } - - private void DownloadJobTaskLogs() - { - HDInsightJobClient.GetJobTaskLogSummary(JobId, DefaultStorageAccountName, DefaultStorageAccountKey, - DefaultContainer); - } - private static string Convert(Stream stream) { var reader = new StreamReader(stream); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs index 828a6339036c..3b17a8a0cb60 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs @@ -19,6 +19,7 @@ using Hyak.Common; using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.WindowsAzure.Commands.Common; +using Microsoft.Azure.Management.HDInsight.Job.Models; namespace Microsoft.Azure.Commands.HDInsight { @@ -175,9 +176,10 @@ public override void ExecuteCmdlet() else { //get job error - output = Convert(HDInsightJobClient.GetJobError(jobid, DefaultStorageAccountName, DefaultStorageAccountKey, - DefaultContainer)); + IStorageAccess storageAccess = new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + output = Convert(HDInsightJobClient.GetJobError(jobid, storageAccess)); } + WriteObject(output); } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs index 5158108d9fe8..d18004eadb6f 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs @@ -55,6 +55,13 @@ public string Command set { job.Command = value; } } + [Parameter(HelpMessage = "The output location to use for the job.")] + public string LibDir + { + get { return job.LibDir; } + set { job.LibDir = value; } + } + #endregion public NewAzureHDInsightSqoopJobDefinitionCommand() diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs index 1a04745f5778..7280af0b05cf 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs @@ -49,7 +49,7 @@ public string StatusFolder } [Parameter(HelpMessage = "The command line environment for the mappers or the reducers.")] - public string[] CommandEnvironment { get; set; } + public Hashtable CommandEnvironment { get; set; } [Parameter(HelpMessage = "The parameters for the jobDetails.")] public Hashtable Defines { get; set; } @@ -88,7 +88,7 @@ public string Reducer public NewAzureHDInsightStreamingMapReduceJobDefinitionCommand() { Arguments = new string[] {}; - CommandEnvironment = new string[] {}; + CommandEnvironment = new Hashtable(); Defines = new Hashtable(); job = new AzureHDInsightStreamingMapReduceJobDefinition(); } @@ -100,9 +100,10 @@ public override void ExecuteCmdlet() job.Arguments.Add(arg); } - foreach (var cmdenv in CommandEnvironment) + var cmdEnvDic = CommandEnvironment.ToDictionary(false); + foreach (var cmdEnv in cmdEnvDic) { - job.CommandEnvironment.Add(cmdenv); + job.CommandEnvironment.Add(cmdEnv.Key, cmdEnv.Value.ToString()); } var defineDic = Defines.ToDictionary(false); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs index 4048cb4f7b7e..fdc2ab2b491c 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs @@ -95,11 +95,6 @@ public AzureHDInsightJob Execute() public JobSubmissionResponse SubmitJob() { - if (string.IsNullOrEmpty(JobDefinition.StatusFolder)) - { - JobDefinition.StatusFolder = Guid.NewGuid().ToString(); - } - JobSubmissionResponse jobCreationResults; var azureMapReduceJobDefinition = JobDefinition as AzureHDInsightMapReduceJobDefinition; diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightSqoopJobDefinition.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightSqoopJobDefinition.cs index e16e1647f05e..5c44578c9da2 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightSqoopJobDefinition.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightSqoopJobDefinition.cs @@ -35,5 +35,10 @@ public class AzureHDInsightSqoopJobDefinition : AzureHDInsightJobDefinition /// Gets or sets the name of the jobDetails. /// public string JobName { get; set; } + + /// + /// Gets or sets the name of the directory for libraries. + /// + public string LibDir { get; set; } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs index af282360b76f..0d441759b450 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs @@ -54,14 +54,14 @@ public class AzureHDInsightStreamingMapReduceJobDefinition : AzureHDInsightJobDe /// /// Gets the command line environment for the mappers or the reducers. /// - public IList CommandEnvironment { get; private set; } + public IDictionary CommandEnvironment { get; private set; } /// /// Initializes a new instance of the AzureHDInsightStreamingMapReduceJobDefinition class. /// public AzureHDInsightStreamingMapReduceJobDefinition() { - CommandEnvironment = new List(); + CommandEnvironment = new Dictionary(); Defines = new Dictionary(); } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs index af2c5432f4d7..63da60ee17df 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs @@ -26,7 +26,7 @@ public class AzureHdInsightJobManagementClient { public AzureHdInsightJobManagementClient(string clusterName, BasicAuthenticationCloudCredentials credential) { - HdInsightJobManagementClient = AzureSession.ClientFactory.CreateCustomClient(clusterName, credential); + HdInsightJobManagementClient = AzureSession.ClientFactory.CreateCustomClient(clusterName, credential, HDInsightJobManagementClient.HDInsightRetryPolicy); } /// @@ -42,13 +42,12 @@ public virtual JobSubmissionResponse SubmitHiveJob(AzureHDInsightHiveJobDefiniti { var hiveJobParams = new HiveJobSubmissionParameters { - Arguments = ConvertListToString(hiveJobDef.Arguments, "arg"), - Defines = ConvertDefinesToString(hiveJobDef.Defines), + Arguments = hiveJobDef.Arguments, + Defines = hiveJobDef.Defines, File = hiveJobDef.File, - Files = ConvertListToString(hiveJobDef.Files, "file"), + Files = hiveJobDef.Files, Query = hiveJobDef.Query, - StatusDir = hiveJobDef.StatusFolder, - UserName = HdInsightJobManagementClient.Credentials.Username + StatusDir = hiveJobDef.StatusFolder }; return HdInsightJobManagementClient.JobManagement.SubmitHiveJob(hiveJobParams); } @@ -57,14 +56,13 @@ public virtual JobSubmissionResponse SubmitMRJob(AzureHDInsightMapReduceJobDefin { var mapredJobParams = new MapReduceJobSubmissionParameters { - Arguments = ConvertListToString(mapredJobDef.Arguments, "arg"), - Defines = ConvertDefinesToString(mapredJobDef.Defines), - Files = ConvertListToString(mapredJobDef.Files, "file"), + Arguments = mapredJobDef.Arguments, + Defines = mapredJobDef.Defines, + Files = mapredJobDef.Files, JarClass = mapredJobDef.ClassName, - LibJars = ConvertListToString(mapredJobDef.LibJars, "jar"), + LibJars = mapredJobDef.LibJars, JarFile = mapredJobDef.JarFile, - StatusDir = mapredJobDef.StatusFolder, - UserName = HdInsightJobManagementClient.Credentials.Username + StatusDir = mapredJobDef.StatusFolder }; return HdInsightJobManagementClient.JobManagement.SubmitMapReduceJob(mapredJobParams); @@ -74,12 +72,11 @@ public virtual JobSubmissionResponse SubmitPigJob(AzureHDInsightPigJobDefinition { var pigJobParams = new PigJobSubmissionParameters { - Arguments = ConvertListToString(pigJobDef.Arguments, "arg"), - Files = ConvertListToString(pigJobDef.Files, "file"), + Arguments = pigJobDef.Arguments, + Files = pigJobDef.Files, StatusDir = pigJobDef.StatusFolder, File = pigJobDef.File, - Query = pigJobDef.Query, - UserName = HdInsightJobManagementClient.Credentials.Username + Query = pigJobDef.Query }; return HdInsightJobManagementClient.JobManagement.SubmitPigJob(pigJobParams); @@ -95,11 +92,10 @@ public virtual JobSubmissionResponse SubmitStreamingJob( Mapper = streamingJobDef.Mapper, Reducer = streamingJobDef.Reducer, File = streamingJobDef.File, - Defines = ConvertDefinesToString(streamingJobDef.Defines), - CmdEnv = ConvertListToString(streamingJobDef.CommandEnvironment, "cmdenv"), - Arguments = ConvertListToString(streamingJobDef.Arguments, "arg"), - StatusDir = streamingJobDef.StatusFolder, - UserName = HdInsightJobManagementClient.Credentials.Username + Defines = streamingJobDef.Defines, + CmdEnv = streamingJobDef.CommandEnvironment, + Arguments = streamingJobDef.Arguments, + StatusDir = streamingJobDef.StatusFolder }; return HdInsightJobManagementClient.JobManagement.SubmitMapReduceStreamingJob(streamingJobParams); @@ -111,9 +107,9 @@ public virtual JobSubmissionResponse SubmitSqoopJob(AzureHDInsightSqoopJobDefini { Command = sqoopJobDef.Command, File = sqoopJobDef.File, - Files = ConvertListToString(sqoopJobDef.Files, "file"), - StatusDir = sqoopJobDef.StatusFolder, - UserName = HdInsightJobManagementClient.Credentials.Username + Files = sqoopJobDef.Files, + LibDir = sqoopJobDef.LibDir, + StatusDir = sqoopJobDef.StatusFolder }; return HdInsightJobManagementClient.JobManagement.SubmitSqoopJob(sqoopJobParams); } @@ -133,39 +129,16 @@ public void StopJob(string jobId) HdInsightJobManagementClient.JobManagement.KillJob(jobId); } - public Stream GetJobOutput(string jobid, string storageAccountName, string storageAccountKey, string containerName) + public Stream GetJobOutput(string jobid, IStorageAccess storageAccess) { - var joboutput = HdInsightJobManagementClient.JobManagement.GetJobOutput(jobid, storageAccountName, storageAccountKey, containerName); + var joboutput = HdInsightJobManagementClient.JobManagement.GetJobOutput(jobid, storageAccess); return joboutput; } - public Stream GetJobError(string jobid, string storageAccountName, string storageAccountKey, string containerName) + public Stream GetJobError(string jobid, IStorageAccess storageAccess) { - var joboutput = HdInsightJobManagementClient.JobManagement.GetJobErrorLogs(jobid, storageAccountName, storageAccountKey, containerName); + var joboutput = HdInsightJobManagementClient.JobManagement.GetJobErrorLogs(jobid, storageAccess); return joboutput; } - - public Stream GetJobTaskLogSummary(string jobid, string storageAccountName, string storageAccountKey, string containerName) - { - var joboutput = HdInsightJobManagementClient.JobManagement.GetJobTaskLogSummary(jobid, storageAccountName, storageAccountKey, containerName); - return joboutput; - } - - public void DownloadJobTaskLogs(string jobid, string targetDirectory, string storageAccountName, - string storageAccountKey, string containerName) - { - HdInsightJobManagementClient.JobManagement.DownloadJobTaskLogs(jobid, targetDirectory, storageAccountName, storageAccountKey, containerName); - } - - public static string ConvertDefinesToString(IDictionary defines) - { - return defines.Count == 0 ? null : string.Format("&define={0}", string.Join("&define=", defines.Select(x => x.Key + "%3D" + x.Value).ToArray())); - } - - public static string ConvertListToString(IList list, string argtype) - { - var prefix = "&" + argtype + "="; - return list.Count == 0 ? null : string.Join(prefix, list.ToArray()); - } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/JobDisplayOutputType.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/JobDisplayOutputType.cs index dd120e91d161..1868d8de7b5b 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/JobDisplayOutputType.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/JobDisplayOutputType.cs @@ -11,11 +11,6 @@ public enum JobDisplayOutputType /// Specifies that the jobDetails output file to download is the stderr file. /// StandardError, - - /// - /// Specifies that the jobDetails output file to download is the logs/list.txt file. - /// - TaskSummary, } public enum JobDownloadOutputType diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config b/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config index 65bbc0b80060..8fb1caad907e 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/packages.config @@ -6,7 +6,7 @@ - + From 146f14bc835899d341c5e0bfdeb1e3c82440aec2 Mon Sep 17 00:00:00 2001 From: pattipaka Date: Wed, 16 Mar 2016 14:57:14 -0700 Subject: [PATCH 34/46] Fix Invoke Hive command issues and job pagination feature --- .../GetAzureHDInsightJobCommand.cs | 13 ++- .../GetAzureHDInsightJobOutputCommand.cs | 84 ++++++++++--------- .../JobCommands/InvokeHiveCommand.cs | 51 ++++++----- .../Models/Job/AzureHDInsightJob.cs | 2 +- .../Job/AzureHdInsightJobManagementClient.cs | 5 ++ 5 files changed, 86 insertions(+), 69 deletions(-) diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs index 2dc17d721831..b78979d46332 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs @@ -62,20 +62,29 @@ public PSCredential HttpCredential HelpMessage = "The JobID of the jobDetails to stop.")] public string JobId { get; set; } + [Parameter(HelpMessage = "Gets or sets the number of jobs to retrieve.")] + public int NumOfJobs { get; set; } + [Parameter(HelpMessage = "Gets or sets the name of the resource group.")] public string ResourceGroupName { get; set; } #endregion - public override void ExecuteCmdlet() { if (ResourceGroupName == null) { ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } + _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); - if (JobId != null) + + if (NumOfJobs > 0) + { + var jobs = HDInsightJobClient.ListJobsAfterJobId(JobId, NumOfJobs).Select(job => new AzureHDInsightJob(job.Detail, HDInsightJobClient.ClusterName)); + WriteObject(jobs, true); + } + else if (JobId != null) { var job = HDInsightJobClient.GetJob(JobId); var jobDetails = new AzureHDInsightJob(job.JobDetail, HDInsightJobClient.ClusterName); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs index 91a14fc0c4c9..0c156fcbb3f7 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs @@ -21,6 +21,7 @@ using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Management.HDInsight.Job.Models; +using Microsoft.Azure.Management.HDInsight; namespace Microsoft.Azure.Commands.HDInsight { @@ -94,39 +95,7 @@ public override void ExecuteCmdlet() ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } - if (DefaultContainer == null || DefaultStorageAccountName == null || DefaultStorageAccountKey == null) - { - var result = HDInsightManagementClient.GetCluster(ResourceGroupName, _clusterName); - - if (result == null || result.Count == 0) - { - throw new CloudException(string.Format("Couldn't find cluster {0}", _clusterName)); - } - - var cluster = result.FirstOrDefault(); - string resourceGroupName = ClusterConfigurationUtils.GetResourceGroupFromClusterId(cluster.Id); - var configuration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, "core-site"); - - if (configuration == null) - { - throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", _clusterName)); - } - - var DefaultStorageAccount = ClusterConfigurationUtils.GetDefaultStorageAccountDetails( - configuration, - cluster.Properties.ClusterVersion); - - if (DefaultStorageAccount == null) - { - throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", _clusterName)); - } - - DefaultContainer = DefaultStorageAccount.StorageContainerName; - DefaultStorageAccountName = DefaultStorageAccount.StorageAccountName; - DefaultStorageAccountKey = DefaultStorageAccount.StorageAccountKey; - } - - storageAccess = new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + storageAccess = GetDefaultStorageAccess(ResourceGroupName, _clusterName); _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); @@ -134,25 +103,25 @@ public override void ExecuteCmdlet() switch (DisplayOutputType) { case JobDisplayOutputType.StandardError: - output = GetJobError(); + output = GetJobError(this.storageAccess); break; default: - output = GetJobOutput(); + output = GetJobOutput(this.storageAccess); break; } WriteObject(output); } - internal string GetJobOutput() + internal string GetJobOutput(IStorageAccess storageAccess) { - var output = HDInsightJobClient.GetJobOutput(JobId, this.storageAccess); + var output = HDInsightJobClient.GetJobOutput(JobId, storageAccess); var outputStr = Convert(output); return outputStr; } - private string GetJobError() + internal string GetJobError(IStorageAccess storageAccess) { - var output = HDInsightJobClient.GetJobError(JobId, this.storageAccess); + var output = HDInsightJobClient.GetJobError(JobId, storageAccess); var outputStr = Convert(output); return outputStr; } @@ -163,5 +132,42 @@ private static string Convert(Stream stream) var text = reader.ReadToEnd(); return text; } + + internal IStorageAccess GetDefaultStorageAccess(string ResourceGroupName, string clusterName) + { + if (DefaultContainer == null && DefaultStorageAccountName == null && DefaultStorageAccountKey == null) + { + var result = HDInsightManagementClient.GetCluster(ResourceGroupName, clusterName); + + if (result == null || result.Count == 0) + { + throw new CloudException(string.Format("Couldn't find cluster {0}", clusterName)); + } + + var cluster = result.FirstOrDefault(); + string resourceGroupName = ClusterConfigurationUtils.GetResourceGroupFromClusterId(cluster.Id); + var configuration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, "core-site"); + + if (configuration == null) + { + throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", clusterName)); + } + + var DefaultStorageAccount = ClusterConfigurationUtils.GetDefaultStorageAccountDetails( + configuration, + cluster.Properties.ClusterVersion); + + if (DefaultStorageAccount == null) + { + throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", clusterName)); + } + + DefaultContainer = DefaultStorageAccount.StorageContainerName; + DefaultStorageAccountName = DefaultStorageAccount.StorageAccountName; + DefaultStorageAccountKey = DefaultStorageAccount.StorageAccountKey; + } + + return new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); + } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs index 3b17a8a0cb60..c2a8d2a5a8cb 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs @@ -15,11 +15,13 @@ using System; using System.Collections; using System.IO; +using System.Linq; using System.Management.Automation; using Hyak.Common; using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Management.HDInsight.Job.Models; +using Microsoft.Azure.Commands.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight { @@ -46,8 +48,7 @@ public string[] Files set { hiveJobDefinitionCommand.Files = value; } } - [Parameter(Mandatory = true, - HelpMessage = "The output location to use for the job.")] + [Parameter(HelpMessage = "The output location to use for the job.")] public string StatusFolder { get { return hiveJobDefinitionCommand.StatusFolder; } @@ -89,13 +90,13 @@ public SwitchParameter RunAsFileJob set { hiveJobDefinitionCommand.RunAsFileJob = value; } } - [Parameter(Mandatory = true, HelpMessage = "The default container name.")] + [Parameter(HelpMessage = "The default container name.")] public string DefaultContainer { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The default storage account name.")] + [Parameter(HelpMessage = "The default storage account name.")] public string DefaultStorageAccountName { get; set; } - [Parameter(Mandatory = true, HelpMessage = "The default storage account key.")] + [Parameter(HelpMessage = "The default storage account key.")] public string DefaultStorageAccountKey { get; set; } #endregion @@ -114,7 +115,6 @@ public override void ExecuteCmdlet() var resourceGroup = SessionState.PSVariable.Get(UseAzureHDInsightClusterCommand.CurrentResourceGroup).Value.ToString(); - _clusterName = clusterConnection; _credential = new BasicAuthenticationCloudCredentials { Username = clusterCred.UserName, @@ -156,38 +156,35 @@ public override void ExecuteCmdlet() }; var job = waitJobCommand.WaitJob(); + + _clusterName = clusterConnection.Substring(0, clusterConnection.IndexOf('.')); + + var getOutputCommand = new GetAzureHDInsightJobOutputCommand + { + HttpCredential = clusterCred, + ResourceGroupName = resourceGroup, + ClusterName = clusterConnection, + DefaultContainer = DefaultContainer, + DefaultStorageAccountName = DefaultStorageAccountName, + DefaultStorageAccountKey = DefaultStorageAccountKey, + JobId = jobid + }; + + var storageAccess = getOutputCommand.GetDefaultStorageAccess(resourceGroup, _clusterName); + string output; if (job.ExitValue == 0) { //get job output - var getOutputCommand = new GetAzureHDInsightJobOutputCommand - { - HttpCredential = clusterCred, - ResourceGroupName = resourceGroup, - ClusterName = clusterConnection, - DefaultContainer = DefaultContainer, - DefaultStorageAccountName = DefaultStorageAccountName, - DefaultStorageAccountKey = DefaultStorageAccountKey, - JobId = jobid - }; - - output = getOutputCommand.GetJobOutput(); + output = getOutputCommand.GetJobOutput(storageAccess); } else { //get job error - IStorageAccess storageAccess = new AzureStorageAccess(DefaultStorageAccountName, DefaultStorageAccountKey, DefaultContainer); - output = Convert(HDInsightJobClient.GetJobError(jobid, storageAccess)); + output = getOutputCommand.GetJobError(storageAccess); } WriteObject(output); } - - private static string Convert(Stream stream) - { - var reader = new StreamReader(stream); - var text = reader.ReadToEnd(); - return text; - } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs index 0f3b54da3136..542cf463fdcb 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs @@ -38,7 +38,7 @@ public AzureHDInsightJob(JobDetailRootJsonObject jobDetails, string cluster) User = jobDetails.User; Callback = jobDetails.Callback; Completed = jobDetails.Completed; - StatusFolder = jobDetails.Userargs.Statusdir.ToString(); + StatusFolder = jobDetails.Userargs.Statusdir != null ? jobDetails.Userargs.Statusdir.ToString() : string.Empty; } /// diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs index 63da60ee17df..b2ba7dcf9faf 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs @@ -124,6 +124,11 @@ public virtual JobListResponse ListJobs() return HdInsightJobManagementClient.JobManagement.ListJobs(); } + public virtual JobListResponse ListJobsAfterJobId(string jobId, int numberOfJobs) + { + return HdInsightJobManagementClient.JobManagement.ListJobsAfterJobId(jobId, numberOfJobs); + } + public void StopJob(string jobId) { HdInsightJobManagementClient.JobManagement.KillJob(jobId); From 3cfe3410bf45d49a5249ea7df165b84cfd2b0bc7 Mon Sep 17 00:00:00 2001 From: ramyan Date: Tue, 15 Mar 2016 19:17:27 -0700 Subject: [PATCH 35/46] 1. Exposing Files parameter to streaming job 2. Passing down values set for Files to underlying SDK 3. Fixing descriptions of fields --- ...ewAzureHDInsightMapReduceJobDefinitionCommand.cs | 4 ++-- ...InsightStreamingMapReduceJobDefinitionCommand.cs | 13 +++++++++++-- .../Models/Job/AzureHDInsightJobDefinition.cs | 2 +- ...AzureHDInsightStreamingMapReduceJobDefinition.cs | 2 +- .../Models/Job/AzureHdInsightJobManagementClient.cs | 1 + 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightMapReduceJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightMapReduceJobDefinitionCommand.cs index efa9ed0eef57..ae859f733fb1 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightMapReduceJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightMapReduceJobDefinitionCommand.cs @@ -31,10 +31,10 @@ public class NewAzureHDInsightMapReduceJobDefinitionCommand : HDInsightCmdletBas #region Input Parameter Definitions - [Parameter(HelpMessage = "The hive arguments for the jobDetails.")] + [Parameter(HelpMessage = "The arguments for the jobDetails.")] public string[] Arguments { get; set; } - [Parameter(HelpMessage = "The files for the jobDetails.")] + [Parameter(HelpMessage = "List of files to be copied to the cluster.")] public string[] Files { get; set; } [Parameter(HelpMessage = "The output location to use for the job.")] diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs index 7280af0b05cf..23e2a186702a 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs @@ -31,16 +31,19 @@ public class NewAzureHDInsightStreamingMapReduceJobDefinitionCommand : HDInsight #region Input Parameter Definitions - [Parameter(HelpMessage = "The hive arguments for the jobDetails.")] + [Parameter(HelpMessage = "The arguments for the jobDetails.")] public string[] Arguments { get; set; } - [Parameter(HelpMessage = "The file for the jobDetails.")] + [Parameter(HelpMessage = "Local file to be made available to tasks")] public string File { get { return job.File; } set { job.File = value; } } + [Parameter(HelpMessage = "List of files to be copied to the cluster.")] + public string[] Files { get; set; } + [Parameter(HelpMessage = "The output location to use for the job.")] public string StatusFolder { @@ -88,6 +91,7 @@ public string Reducer public NewAzureHDInsightStreamingMapReduceJobDefinitionCommand() { Arguments = new string[] {}; + Files = new string[] { }; CommandEnvironment = new Hashtable(); Defines = new Hashtable(); job = new AzureHDInsightStreamingMapReduceJobDefinition(); @@ -112,6 +116,11 @@ public override void ExecuteCmdlet() job.Defines.Add(define.Key, define.Value.ToString()); } + foreach (var file in Files) + { + job.Files.Add(file); + } + WriteObject(job); } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJobDefinition.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJobDefinition.cs index 0d8f809717c2..0902ef62f8e7 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJobDefinition.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJobDefinition.cs @@ -36,7 +36,7 @@ protected AzureHDInsightJobDefinition() public IList Arguments { get; private set; } /// - /// Gets the resources for the jobDetails. + /// Gets the files to be copied to the cluster /// public IList Files { get; private set; } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs index 0d441759b450..bc8d5a2df8b1 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightStreamingMapReduceJobDefinition.cs @@ -42,7 +42,7 @@ public class AzureHDInsightStreamingMapReduceJobDefinition : AzureHDInsightJobDe public string Reducer { get; set; } /// - /// Gets or sets an HDFS file to add to the distributed cache. + /// Gets or sets a file to add to the distributed cache. /// public string File { get; set; } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs index b2ba7dcf9faf..06ed403dc3aa 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHdInsightJobManagementClient.cs @@ -92,6 +92,7 @@ public virtual JobSubmissionResponse SubmitStreamingJob( Mapper = streamingJobDef.Mapper, Reducer = streamingJobDef.Reducer, File = streamingJobDef.File, + Files = streamingJobDef.Files, Defines = streamingJobDef.Defines, CmdEnv = streamingJobDef.CommandEnvironment, Arguments = streamingJobDef.Arguments, From 06aa81fdf7f92044f5b79f6799b1a0051bbfda0f Mon Sep 17 00:00:00 2001 From: sriramvu Date: Sat, 19 Mar 2016 23:07:41 +0530 Subject: [PATCH 36/46] updated tests, session records, help, hydra version --- .../Commands.RecoveryServices.Test.csproj | 2 +- .../ScenarioTests/RecoveryServicesTests.ps1 | 6 +- .../VaultCRUDTests.json | 6066 +---------------- .../packages.config | 2 +- .../Commands.RecoveryServices.csproj | 2 +- .../Commands.RecoveryServices/packages.config | 2 +- .../Commands.SiteRecovery.Test.csproj | 17 +- .../ScenarioTests/SiteRecoveryTests.cs | 25 +- .../ScenarioTests/SiteRecoveryTests.ps1 | 92 +- .../ScenarioTests/SiteRecoveryTestsBase.cs | 14 +- .../vaultSettings.VaultCredentials | 2 +- .../EnumerationTests.json | 1650 +---- .../TestAssociateProfile.json | 442 +- .../TestCreateProfile.json | 184 +- .../TestCreateRP.json | 3153 +++++++++ .../TestDeleteProfile.json | 422 +- .../TestDisableDR.json | 2435 +++++++ .../TestDissociateProfile.json | 818 ++- .../TestEnableDR.json | 2263 ++++++ .../TestEnumerateRP.json | 653 ++ .../TestRemoveRP.json | 1011 +++ .../VaultCRUDTests.json | 5934 +--------------- .../packages.config | 2 +- .../Commands.SiteRecovery.csproj | 6 +- ...t.Azure.Commands.SiteRecovery.dll-help.xml | 1564 +++++ ...er.cs => UpdateAzureSiteRecoveryServer.cs} | 0 ...teRecoveryStorageClassificationMapping.cs} | 0 .../Commands.SiteRecovery/packages.config | 2 +- 28 files changed, 12991 insertions(+), 13778 deletions(-) create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestCreateRP.json create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDisableDR.json create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestEnableDR.json create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestEnumerateRP.json create mode 100644 src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestRemoveRP.json rename src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/{RefreshAzureSiteRecoveryServer.cs => UpdateAzureSiteRecoveryServer.cs} (100%) rename src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/{NewAzureRmSiteRecoveryStorageClassificationMapping.cs => NewAzureSiteRecoveryStorageClassificationMapping.cs} (100%) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj index d63b71d58332..87f666223cee 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj @@ -49,7 +49,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.8-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.3-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll False diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 index 4cac83a7cf00..83ba985fcf62 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 @@ -21,7 +21,7 @@ Recovery Services Vault CRUD Tests function Test-RecoveryServicesVaultCRUDTests { # Create vault - $vaultCreationResponse = New-AzureRmRecoveryServicesVault -Name rsv1 -ResourceGroupName S91-1 -Location westus + $vaultCreationResponse = New-AzureRmRecoveryServicesVault -Name rsv1 -ResourceGroupName rg1 -Location westus Assert-NotNull($vaultCreationResponse.Name) Assert-NotNull($vaultCreationResponse.ID) Assert-NotNull($vaultCreationResponse.Type) @@ -38,13 +38,13 @@ function Test-RecoveryServicesVaultCRUDTests } # Get the created vault - $vaultToBeRemoved = Get-AzureRmRecoveryServicesVault -ResourceGroupName S91-1 -Name rsv1 + $vaultToBeRemoved = Get-AzureRmRecoveryServicesVault -ResourceGroupName rg1 -Name rsv1 Assert-NotNull($vaultToBeRemoved.Name) Assert-NotNull($vaultToBeRemoved.ID) Assert-NotNull($vaultToBeRemoved.Type) # Remove Vault Remove-AzureRmRecoveryServicesVault -Vault $vaultToBeRemoved - $vaults = Get-AzureRmRecoveryServicesVault -ResourceGroupName S91-1 -Name rsv1 + $vaults = Get-AzureRmRecoveryServicesVault -ResourceGroupName rg1 -Name rsv1 Assert-True { $vaults.Count -eq 0 } } \ No newline at end of file diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/VaultCRUDTests.json b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/VaultCRUDTests.json index d2ce023b2abe..12e7ee022ba7 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/VaultCRUDTests.json +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/VaultCRUDTests.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvcnN2MT9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"properties\": {}\r\n}", "RequestHeaders": { @@ -22,10 +22,10 @@ "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"fa297d9b-4d18-442f-89af-1c3803cd2790\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"960e6084-4e68-46d8-b35a-4f6ef37c2504\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "402" + "334" ], "Content-Type": [ "application/json" @@ -37,10 +37,10 @@ "no-cache" ], "x-ms-request-id": [ - "142caa0e-d8ec-4511-940d-2c7637f6e98b" + "1426d02e-6622-48e1-9f68-05b2153c972b" ], "x-ms-client-request-id": [ - "c1681a27-fc52-4a40-bca5-3ec4bd321f3f" + "aa6ed01d-4fd3-4f7a-bf23-942dedf6cabe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,16 +49,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "142caa0e-d8ec-4511-940d-2c7637f6e98b" + "1426d02e-6622-48e1-9f68-05b2153c972b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114429Z:142caa0e-d8ec-4511-940d-2c7637f6e98b" + "CENTRALUS:20160319T092236Z:1426d02e-6622-48e1-9f68-05b2153c972b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:28 GMT" + "Sat, 19 Mar 2016 09:22:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -67,8 +67,8 @@ "StatusCode": 201 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -79,10 +79,10 @@ "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/applicationdemo\",\r\n \"name\": \"applicationdemo\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/applicationsiena\",\r\n \"name\": \"applicationsiena\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1194\",\r\n \"name\": \"csmrg1194\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1202\",\r\n \"name\": \"csmrg1202\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1209\",\r\n \"name\": \"csmrg1209\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1220\",\r\n \"name\": \"csmrg1220\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1223\",\r\n \"name\": \"csmrg1223\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1528\",\r\n \"name\": \"csmrg1528\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1666\",\r\n \"name\": \"csmrg1666\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1867\",\r\n \"name\": \"csmrg1867\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg196\",\r\n \"name\": \"csmrg196\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2119\",\r\n \"name\": \"csmrg2119\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2210\",\r\n \"name\": \"csmrg2210\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2218\",\r\n \"name\": \"csmrg2218\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2276\",\r\n \"name\": \"csmrg2276\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2320\",\r\n \"name\": \"csmrg2320\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2420\",\r\n \"name\": \"csmrg2420\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2693\",\r\n \"name\": \"csmrg2693\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg293\",\r\n \"name\": \"csmrg293\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3082\",\r\n \"name\": \"csmrg3082\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3204\",\r\n \"name\": \"csmrg3204\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3487\",\r\n \"name\": \"csmrg3487\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3843\",\r\n \"name\": \"csmrg3843\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3905\",\r\n \"name\": \"csmrg3905\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4036\",\r\n \"name\": \"csmrg4036\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4123\",\r\n \"name\": \"csmrg4123\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4238\",\r\n \"name\": \"csmrg4238\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4250\",\r\n \"name\": \"csmrg4250\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4379\",\r\n \"name\": \"csmrg4379\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4407\",\r\n \"name\": \"csmrg4407\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4759\",\r\n \"name\": \"csmrg4759\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4952\",\r\n \"name\": \"csmrg4952\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5025\",\r\n \"name\": \"csmrg5025\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5224\",\r\n \"name\": \"csmrg5224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5285\",\r\n \"name\": \"csmrg5285\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5352\",\r\n \"name\": \"csmrg5352\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5520\",\r\n \"name\": \"csmrg5520\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5591\",\r\n \"name\": \"csmrg5591\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5803\",\r\n \"name\": \"csmrg5803\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5924\",\r\n \"name\": \"csmrg5924\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6057\",\r\n \"name\": \"csmrg6057\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6147\",\r\n \"name\": \"csmrg6147\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6244\",\r\n \"name\": \"csmrg6244\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6373\",\r\n \"name\": \"csmrg6373\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6426\",\r\n \"name\": \"csmrg6426\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6483\",\r\n \"name\": \"csmrg6483\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6501\",\r\n \"name\": \"csmrg6501\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6607\",\r\n \"name\": \"csmrg6607\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6658\",\r\n \"name\": \"csmrg6658\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6810\",\r\n \"name\": \"csmrg6810\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7193\",\r\n \"name\": \"csmrg7193\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7279\",\r\n \"name\": \"csmrg7279\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7537\",\r\n \"name\": \"csmrg7537\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7542\",\r\n \"name\": \"csmrg7542\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7741\",\r\n \"name\": \"csmrg7741\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8298\",\r\n \"name\": \"csmrg8298\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8383\",\r\n \"name\": \"csmrg8383\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8501\",\r\n \"name\": \"csmrg8501\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8568\",\r\n \"name\": \"csmrg8568\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg890\",\r\n \"name\": \"csmrg890\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8926\",\r\n \"name\": \"csmrg8926\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9020\",\r\n \"name\": \"csmrg9020\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9059\",\r\n \"name\": \"csmrg9059\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9228\",\r\n \"name\": \"csmrg9228\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9372\",\r\n \"name\": \"csmrg9372\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9417\",\r\n \"name\": \"csmrg9417\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg948\",\r\n \"name\": \"csmrg948\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9646\",\r\n \"name\": \"csmrg9646\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9667\",\r\n \"name\": \"csmrg9667\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9696\",\r\n \"name\": \"csmrg9696\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/E2Atesting\",\r\n \"name\": \"E2Atesting\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Gen2RG\",\r\n \"name\": \"Gen2RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/latestrg\",\r\n \"name\": \"latestrg\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/LJSam\",\r\n \"name\": \"LJSam\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/MukeshTestRG\",\r\n \"name\": \"MukeshTestRG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/newe2arg\",\r\n \"name\": \"newe2arg\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-Southeast-Asia\",\r\n \"name\": \"RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-Southeast-Asia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-West-US\",\r\n \"name\": \"RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServicesRG\",\r\n \"name\": \"RecoveryServicesRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg2testE2Afor10_2\",\r\n \"name\": \"rg2testE2Afor10_2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-1\",\r\n \"name\": \"S01-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-2776b10c\",\r\n \"name\": \"S01-2776b10c\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S101-1\",\r\n \"name\": \"S101-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S102-1\",\r\n \"name\": \"S102-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S53-4cddea50\",\r\n \"name\": \"S53-4cddea50\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/s57-1234\",\r\n \"name\": \"s57-1234\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S59-92fc5083\",\r\n \"name\": \"S59-92fc5083\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S5-fb365396\",\r\n \"name\": \"S5-fb365396\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S8-fb365396\",\r\n \"name\": \"S8-fb365396\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1\",\r\n \"name\": \"S91-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S96-12\",\r\n \"name\": \"S96-12\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S9-fb365396\",\r\n \"name\": \"S9-fb365396\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/sakulkar\",\r\n \"name\": \"sakulkar\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/sam1\",\r\n \"name\": \"sam1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samb2a\",\r\n \"name\": \"samb2a\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhita\",\r\n \"name\": \"samhita\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhitaE2A\",\r\n \"name\": \"samhitaE2A\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhitae2e\",\r\n \"name\": \"samhitae2e\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/TemplateStore\",\r\n \"name\": \"TemplateStore\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-sea\",\r\n \"name\": \"vaults-resourcegroup-sea\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-wus\",\r\n \"name\": \"vaults-resourcegroup-wus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/VS-testacc201-Group\",\r\n \"name\": \"VS-testacc201-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/VS-testacc203-Group\",\r\n \"name\": \"VS-testacc203-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "19208" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97,13 +97,13 @@ "14999" ], "x-ms-request-id": [ - "aef3fb86-a0d9-4d3d-af7f-d8ba9b740f2a" + "3627f2d0-c1f8-43ff-aeb8-c4ec094e524c" ], "x-ms-correlation-request-id": [ - "aef3fb86-a0d9-4d3d-af7f-d8ba9b740f2a" + "3627f2d0-c1f8-43ff-aeb8-c4ec094e524c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114430Z:aef3fb86-a0d9-4d3d-af7f-d8ba9b740f2a" + "CENTRALUS:20160319T092236Z:3627f2d0-c1f8-43ff-aeb8-c4ec094e524c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,19 +112,19 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:30 GMT" + "Sat, 19 Mar 2016 09:22:36 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/applicationdemo/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2FwcGxpY2F0aW9uZGVtby9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b20bd1e-8faf-494b-88ce-fb700d27a48f-2015-12-29 11:44:29Z-P" + "6214c648-0954-4465-a3dc-7dfd87c934c8-2016-03-19 09:22:36Z-P" ], "x-ms-version": [ "2015-01-01" @@ -148,10 +148,10 @@ "no-cache" ], "x-ms-request-id": [ - "e1a4b576-19ce-455e-b530-be8bcdcd4151" + "ecea9097-506d-4c1e-af2e-ff0a0abe09af" ], "x-ms-client-request-id": [ - "8b20bd1e-8faf-494b-88ce-fb700d27a48f-2015-12-29 11:44:29Z-P" + "6214c648-0954-4465-a3dc-7dfd87c934c8-2016-03-19 09:22:36Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -160,16 +160,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "e1a4b576-19ce-455e-b530-be8bcdcd4151" + "ecea9097-506d-4c1e-af2e-ff0a0abe09af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114432Z:e1a4b576-19ce-455e-b530-be8bcdcd4151" + "CENTRALUS:20160319T092238Z:ecea9097-506d-4c1e-af2e-ff0a0abe09af" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:31 GMT" + "Sat, 19 Mar 2016 09:22:38 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -178,13 +178,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/applicationsiena/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2FwcGxpY2F0aW9uc2llbmEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83da4387-e36b-457c-a1f1-5238141ef79f-2015-12-29 11:44:31Z-P" + "69c89b46-a99a-436a-898f-2cb55e13dc97-2016-03-19 09:22:38Z-P" ], "x-ms-version": [ "2015-01-01" @@ -208,10 +208,10 @@ "no-cache" ], "x-ms-request-id": [ - "8e3b28bc-37fd-4afd-8604-c33dfa566767" + "a7a44904-bedb-4421-b2dd-1883b593d244" ], "x-ms-client-request-id": [ - "83da4387-e36b-457c-a1f1-5238141ef79f-2015-12-29 11:44:31Z-P" + "69c89b46-a99a-436a-898f-2cb55e13dc97-2016-03-19 09:22:38Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -220,16 +220,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "8e3b28bc-37fd-4afd-8604-c33dfa566767" + "a7a44904-bedb-4421-b2dd-1883b593d244" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114432Z:8e3b28bc-37fd-4afd-8604-c33dfa566767" + "CENTRALUS:20160319T092239Z:a7a44904-bedb-4421-b2dd-1883b593d244" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:32 GMT" + "Sat, 19 Mar 2016 09:22:39 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -238,13 +238,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0FSTVRlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwLTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25b7dc6a-c383-4b4e-aeb2-9ed7ffa65fae-2015-12-29 11:44:32Z-P" + "3e5bc80d-9ac3-4ba1-b9b9-9f73b5a25e66-2016-03-19 09:22:39Z-P" ], "x-ms-version": [ "2015-01-01" @@ -268,10 +268,10 @@ "no-cache" ], "x-ms-request-id": [ - "08dfe7b5-3af4-4efa-abad-5cf63e328891" + "81944d09-fe79-4202-b34f-005e91684aa2" ], "x-ms-client-request-id": [ - "25b7dc6a-c383-4b4e-aeb2-9ed7ffa65fae-2015-12-29 11:44:32Z-P" + "3e5bc80d-9ac3-4ba1-b9b9-9f73b5a25e66-2016-03-19 09:22:39Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,16 +280,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "08dfe7b5-3af4-4efa-abad-5cf63e328891" + "81944d09-fe79-4202-b34f-005e91684aa2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114433Z:08dfe7b5-3af4-4efa-abad-5cf63e328891" + "CENTRALUS:20160319T092239Z:81944d09-fe79-4202-b34f-005e91684aa2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:32 GMT" + "Sat, 19 Mar 2016 09:22:39 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -298,13 +298,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1194/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwLTIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5268072-2230-4909-a839-5103067085f4-2015-12-29 11:44:32Z-P" + "e27c2919-9a1c-4749-b95b-0f77274d961e-2016-03-19 09:22:39Z-P" ], "x-ms-version": [ "2015-01-01" @@ -328,10 +328,10 @@ "no-cache" ], "x-ms-request-id": [ - "f2499c8b-a897-4503-a9a4-9a40d09216a4" + "a1d3a7f2-7f6e-4676-8eba-1128492f9bbc" ], "x-ms-client-request-id": [ - "c5268072-2230-4909-a839-5103067085f4-2015-12-29 11:44:32Z-P" + "e27c2919-9a1c-4749-b95b-0f77274d961e-2016-03-19 09:22:39Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,16 +340,16 @@ "14995" ], "x-ms-correlation-request-id": [ - "f2499c8b-a897-4503-a9a4-9a40d09216a4" + "a1d3a7f2-7f6e-4676-8eba-1128492f9bbc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114434Z:f2499c8b-a897-4503-a9a4-9a40d09216a4" + "CENTRALUS:20160319T092240Z:a1d3a7f2-7f6e-4676-8eba-1128492f9bbc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:33 GMT" + "Sat, 19 Mar 2016 09:22:40 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -358,13 +358,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1202/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwLTMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d471ccce-80cc-491c-9a4e-c868c1f7b4ba-2015-12-29 11:44:33Z-P" + "1170b709-44a7-49a4-82e6-57bfd6ec8714-2016-03-19 09:22:40Z-P" ], "x-ms-version": [ "2015-01-01" @@ -388,10 +388,10 @@ "no-cache" ], "x-ms-request-id": [ - "8569e298-fc85-4743-8710-865a508faf70" + "62ba51bc-03a0-4b53-985e-ca895f6344ae" ], "x-ms-client-request-id": [ - "d471ccce-80cc-491c-9a4e-c868c1f7b4ba-2015-12-29 11:44:33Z-P" + "1170b709-44a7-49a4-82e6-57bfd6ec8714-2016-03-19 09:22:40Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,16 +400,16 @@ "14994" ], "x-ms-correlation-request-id": [ - "8569e298-fc85-4743-8710-865a508faf70" + "62ba51bc-03a0-4b53-985e-ca895f6344ae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114434Z:8569e298-fc85-4743-8710-865a508faf70" + "CENTRALUS:20160319T092240Z:62ba51bc-03a0-4b53-985e-ca895f6344ae" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:33 GMT" + "Sat, 19 Mar 2016 09:22:40 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -418,13 +418,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1209/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL2dydDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "906caf33-35a7-40c5-a733-510adb713de0-2015-12-29 11:44:33Z-P" + "dc2c288c-9962-49ac-b4c2-469a177cae88-2016-03-19 09:22:41Z-P" ], "x-ms-version": [ "2015-01-01" @@ -448,10 +448,10 @@ "no-cache" ], "x-ms-request-id": [ - "d9e89ff1-6553-4dfe-a25a-9094a19d4380" + "0bc86cb6-74b8-456c-879e-290e6fdeab9d" ], "x-ms-client-request-id": [ - "906caf33-35a7-40c5-a733-510adb713de0-2015-12-29 11:44:33Z-P" + "dc2c288c-9962-49ac-b4c2-469a177cae88-2016-03-19 09:22:41Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -460,16 +460,16 @@ "14993" ], "x-ms-correlation-request-id": [ - "d9e89ff1-6553-4dfe-a25a-9094a19d4380" + "0bc86cb6-74b8-456c-879e-290e6fdeab9d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114435Z:d9e89ff1-6553-4dfe-a25a-9094a19d4380" + "CENTRALUS:20160319T092241Z:0bc86cb6-74b8-456c-879e-290e6fdeab9d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:35 GMT" + "Sat, 19 Mar 2016 09:22:41 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -478,13 +478,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1220/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL01vYmlsZUVuZ2FnZW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daeea5b1-1e41-4a45-b648-9bdbb681e05d-2015-12-29 11:44:34Z-P" + "4a76b708-6086-40bb-ab04-46e7b258d7de-2016-03-19 09:22:41Z-P" ], "x-ms-version": [ "2015-01-01" @@ -508,10 +508,10 @@ "no-cache" ], "x-ms-request-id": [ - "e29a68e7-a0a5-45c0-b0a3-dbcbacccd062" + "9fddfba1-e483-4141-b329-b5c2c094d501" ], "x-ms-client-request-id": [ - "daeea5b1-1e41-4a45-b648-9bdbb681e05d-2015-12-29 11:44:34Z-P" + "4a76b708-6086-40bb-ab04-46e7b258d7de-2016-03-19 09:22:41Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,16 +520,16 @@ "14992" ], "x-ms-correlation-request-id": [ - "e29a68e7-a0a5-45c0-b0a3-dbcbacccd062" + "9fddfba1-e483-4141-b329-b5c2c094d501" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114435Z:e29a68e7-a0a5-45c0-b0a3-dbcbacccd062" + "CENTRALUS:20160319T092242Z:9fddfba1-e483-4141-b329-b5c2c094d501" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:35 GMT" + "Sat, 19 Mar 2016 09:22:41 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -538,13 +538,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1223/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL09JLURlZmF1bHQtRWFzdC1VUy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a183a9d-dfe0-4e26-97c7-d7e298e86019-2015-12-29 11:44:35Z-P" + "98201a77-1cef-4353-954e-c3803ff87a70-2016-03-19 09:22:42Z-P" ], "x-ms-version": [ "2015-01-01" @@ -568,10 +568,10 @@ "no-cache" ], "x-ms-request-id": [ - "13bbdad5-705e-49e5-aace-9eda8107c7a1" + "d831717f-9f0a-49c7-b6f4-d919dc2a19f5" ], "x-ms-client-request-id": [ - "5a183a9d-dfe0-4e26-97c7-d7e298e86019-2015-12-29 11:44:35Z-P" + "98201a77-1cef-4353-954e-c3803ff87a70-2016-03-19 09:22:42Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -580,16 +580,16 @@ "14991" ], "x-ms-correlation-request-id": [ - "13bbdad5-705e-49e5-aace-9eda8107c7a1" + "d831717f-9f0a-49c7-b6f4-d919dc2a19f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114436Z:13bbdad5-705e-49e5-aace-9eda8107c7a1" + "CENTRALUS:20160319T092242Z:d831717f-9f0a-49c7-b6f4-d919dc2a19f5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:36 GMT" + "Sat, 19 Mar 2016 09:22:42 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -598,13 +598,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1528/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtTUpNSU5QNVZWT0dTUFNKQ1FTV0cyUkNMUU5YWFdIQldGTzZBT0RUUjZEV0EzU0FaM0pOUS1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "054c4b58-0583-4544-9387-f3147e5b5ff0-2015-12-29 11:44:35Z-P" + "7e28931e-7cad-4c81-bd5a-569098788282-2016-03-19 09:22:42Z-P" ], "x-ms-version": [ "2015-01-01" @@ -628,10 +628,10 @@ "no-cache" ], "x-ms-request-id": [ - "70d1f1f9-1419-4a80-bf5e-c290b3c85776" + "fa10167a-80ce-4035-9dd3-e9ae8684a8ea" ], "x-ms-client-request-id": [ - "054c4b58-0583-4544-9387-f3147e5b5ff0-2015-12-29 11:44:35Z-P" + "7e28931e-7cad-4c81-bd5a-569098788282-2016-03-19 09:22:42Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,16 +640,16 @@ "14990" ], "x-ms-correlation-request-id": [ - "70d1f1f9-1419-4a80-bf5e-c290b3c85776" + "fa10167a-80ce-4035-9dd3-e9ae8684a8ea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114436Z:70d1f1f9-1419-4a80-bf5e-c290b3c85776" + "CENTRALUS:20160319T092243Z:fa10167a-80ce-4035-9dd3-e9ae8684a8ea" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:44:36 GMT" + "Sat, 19 Mar 2016 09:22:42 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -658,13 +658,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1666/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTY2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "426beb8d-c918-4e03-a303-54e1a5754246-2015-12-29 11:44:36Z-P" + "cf9cd1d3-3282-4d97-9999-4d8d7df24979-2016-03-19 09:22:43Z-P" ], "x-ms-version": [ "2015-01-01" @@ -673,5470 +673,10 @@ "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ae8cd6bc-8749-408c-b43a-b62a29c4a4a2" - ], - "x-ms-client-request-id": [ - "426beb8d-c918-4e03-a303-54e1a5754246-2015-12-29 11:44:36Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "ae8cd6bc-8749-408c-b43a-b62a29c4a4a2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114437Z:ae8cd6bc-8749-408c-b43a-b62a29c4a4a2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:37 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1867/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "069eb11e-638b-4a9c-8f7a-3d9da574f5a8-2015-12-29 11:44:36Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f553a93c-c913-4fb9-b7d3-e5d45671b466" - ], - "x-ms-client-request-id": [ - "069eb11e-638b-4a9c-8f7a-3d9da574f5a8-2015-12-29 11:44:36Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "f553a93c-c913-4fb9-b7d3-e5d45671b466" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114438Z:f553a93c-c913-4fb9-b7d3-e5d45671b466" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:37 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg196/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "04d3b7ce-f32f-4866-88ad-78d9a93a630c-2015-12-29 11:44:37Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "074a5e82-6c5a-4642-96aa-4cda3dea7a86" - ], - "x-ms-client-request-id": [ - "04d3b7ce-f32f-4866-88ad-78d9a93a630c-2015-12-29 11:44:37Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "074a5e82-6c5a-4642-96aa-4cda3dea7a86" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114438Z:074a5e82-6c5a-4642-96aa-4cda3dea7a86" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2119/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjExOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "873ad14d-0c17-4e19-b878-0d78004602e8-2015-12-29 11:44:38Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6e1c7e95-323c-4463-8e70-83836b3a9047" - ], - "x-ms-client-request-id": [ - "873ad14d-0c17-4e19-b878-0d78004602e8-2015-12-29 11:44:38Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "6e1c7e95-323c-4463-8e70-83836b3a9047" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114439Z:6e1c7e95-323c-4463-8e70-83836b3a9047" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2210/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "870438f1-804b-4ebc-99d4-dab86a9541df-2015-12-29 11:44:38Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e740f210-17dd-4618-a3dd-74c11cd770b1" - ], - "x-ms-client-request-id": [ - "870438f1-804b-4ebc-99d4-dab86a9541df-2015-12-29 11:44:38Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "e740f210-17dd-4618-a3dd-74c11cd770b1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114439Z:e740f210-17dd-4618-a3dd-74c11cd770b1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:39 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2218/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6f0e16fa-58f8-4289-8647-abd897758093-2015-12-29 11:44:39Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "234830bd-4c2f-44d7-ab22-28cf0aedf9f4" - ], - "x-ms-client-request-id": [ - "6f0e16fa-58f8-4289-8647-abd897758093-2015-12-29 11:44:39Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "234830bd-4c2f-44d7-ab22-28cf0aedf9f4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114440Z:234830bd-4c2f-44d7-ab22-28cf0aedf9f4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:39 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2276/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjI3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c082152-80cc-4450-a87d-88f46058234f-2015-12-29 11:44:39Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e59dc8c6-755f-4352-8137-9301ec332bea" - ], - "x-ms-client-request-id": [ - "9c082152-80cc-4450-a87d-88f46058234f-2015-12-29 11:44:39Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "e59dc8c6-755f-4352-8137-9301ec332bea" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114441Z:e59dc8c6-755f-4352-8137-9301ec332bea" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:41 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2320/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjMyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "01f524af-8cdc-452f-befb-8c56521a5846-2015-12-29 11:44:40Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c734c5e0-325c-42ee-8beb-eb38bd8b19ba" - ], - "x-ms-client-request-id": [ - "01f524af-8cdc-452f-befb-8c56521a5846-2015-12-29 11:44:40Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "c734c5e0-325c-42ee-8beb-eb38bd8b19ba" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114441Z:c734c5e0-325c-42ee-8beb-eb38bd8b19ba" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:41 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2420/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "18c4ecfa-efd2-43ff-a483-94b39bbc0acc-2015-12-29 11:44:40Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8629e310-5cdf-437a-aec1-24d85f10563b" - ], - "x-ms-client-request-id": [ - "18c4ecfa-efd2-43ff-a483-94b39bbc0acc-2015-12-29 11:44:40Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "8629e310-5cdf-437a-aec1-24d85f10563b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114442Z:8629e310-5cdf-437a-aec1-24d85f10563b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:42 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2693/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjY5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a795e826-3595-4dd8-85f2-12ab190a430e-2015-12-29 11:44:41Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2dc15a93-e1ef-4d48-989a-d773f365c671" - ], - "x-ms-client-request-id": [ - "a795e826-3595-4dd8-85f2-12ab190a430e-2015-12-29 11:44:41Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "2dc15a93-e1ef-4d48-989a-d773f365c671" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114442Z:2dc15a93-e1ef-4d48-989a-d773f365c671" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:42 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg293/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fc591f0c-4323-486b-81b6-9c51a5f4e981-2015-12-29 11:44:42Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2fa4fdf0-1765-4227-8573-ee60d94ae803" - ], - "x-ms-client-request-id": [ - "fc591f0c-4323-486b-81b6-9c51a5f4e981-2015-12-29 11:44:42Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-correlation-request-id": [ - "2fa4fdf0-1765-4227-8573-ee60d94ae803" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114443Z:2fa4fdf0-1765-4227-8573-ee60d94ae803" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3082/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "40e145e6-103b-4f58-bbdb-5d1363541a43-2015-12-29 11:44:42Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f52eb337-bb4f-4fa8-98e5-1a9803ad21d3" - ], - "x-ms-client-request-id": [ - "40e145e6-103b-4f58-bbdb-5d1363541a43-2015-12-29 11:44:42Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-correlation-request-id": [ - "f52eb337-bb4f-4fa8-98e5-1a9803ad21d3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114443Z:f52eb337-bb4f-4fa8-98e5-1a9803ad21d3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3204/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1b71ea9b-3a74-484d-bd86-50ee171bcf11-2015-12-29 11:44:43Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3fa60625-0308-4fe5-a13f-55ac12dbb77b" - ], - "x-ms-client-request-id": [ - "1b71ea9b-3a74-484d-bd86-50ee171bcf11-2015-12-29 11:44:43Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "3fa60625-0308-4fe5-a13f-55ac12dbb77b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114444Z:3fa60625-0308-4fe5-a13f-55ac12dbb77b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:44 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3487/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "82a970ac-93d9-44f7-a1da-99ad8960e1f1-2015-12-29 11:44:43Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a6fc10d5-6810-492b-ad7a-dc8b7780e0e9" - ], - "x-ms-client-request-id": [ - "82a970ac-93d9-44f7-a1da-99ad8960e1f1-2015-12-29 11:44:43Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "a6fc10d5-6810-492b-ad7a-dc8b7780e0e9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114445Z:a6fc10d5-6810-492b-ad7a-dc8b7780e0e9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:44 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3843/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aeb9867f-7010-4821-9624-4d6ee94253cd-2015-12-29 11:44:44Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a0d11332-1972-46a4-909d-bf4699bf8862" - ], - "x-ms-client-request-id": [ - "aeb9867f-7010-4821-9624-4d6ee94253cd-2015-12-29 11:44:44Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-correlation-request-id": [ - "a0d11332-1972-46a4-909d-bf4699bf8862" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114445Z:a0d11332-1972-46a4-909d-bf4699bf8862" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3905/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e8d0d0a-00c0-4a06-bb46-a14b9bde7bef-2015-12-29 11:44:44Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7b0b4791-f1bd-4622-bf40-49a296a13090" - ], - "x-ms-client-request-id": [ - "2e8d0d0a-00c0-4a06-bb46-a14b9bde7bef-2015-12-29 11:44:44Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "7b0b4791-f1bd-4622-bf40-49a296a13090" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114446Z:7b0b4791-f1bd-4622-bf40-49a296a13090" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4036/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDAzNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "92efa78f-b5dc-453b-b7e2-8006b65ce394-2015-12-29 11:44:45Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7d787e8c-6e12-41ea-af4b-c2fd9ed6f833" - ], - "x-ms-client-request-id": [ - "92efa78f-b5dc-453b-b7e2-8006b65ce394-2015-12-29 11:44:45Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "7d787e8c-6e12-41ea-af4b-c2fd9ed6f833" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114446Z:7d787e8c-6e12-41ea-af4b-c2fd9ed6f833" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4123/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1c38182-f63a-44cb-b5bc-1e9d77fc6693-2015-12-29 11:44:46Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aa657696-2e02-43eb-b22a-98557ebc406e" - ], - "x-ms-client-request-id": [ - "a1c38182-f63a-44cb-b5bc-1e9d77fc6693-2015-12-29 11:44:46Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "aa657696-2e02-43eb-b22a-98557ebc406e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114447Z:aa657696-2e02-43eb-b22a-98557ebc406e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4238/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDIzOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "980d3dd0-765e-477a-b463-c5b46c291a86-2015-12-29 11:44:46Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eda3a10e-aadc-49ec-ba79-a08d4c1c5478" - ], - "x-ms-client-request-id": [ - "980d3dd0-765e-477a-b463-c5b46c291a86-2015-12-29 11:44:46Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "eda3a10e-aadc-49ec-ba79-a08d4c1c5478" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114448Z:eda3a10e-aadc-49ec-ba79-a08d4c1c5478" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:47 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4250/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDI1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b9f9a887-e0c8-44bf-9baa-33eaaed4ec8b-2015-12-29 11:44:47Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fbb3e301-bae3-43b2-9d9c-cb9a40fa679e" - ], - "x-ms-client-request-id": [ - "b9f9a887-e0c8-44bf-9baa-33eaaed4ec8b-2015-12-29 11:44:47Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-correlation-request-id": [ - "fbb3e301-bae3-43b2-9d9c-cb9a40fa679e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114448Z:fbb3e301-bae3-43b2-9d9c-cb9a40fa679e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:47 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4379/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2d4b8509-0362-4c07-bb87-9fa91ffab433-2015-12-29 11:44:47Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8a86c210-a84f-4fea-831e-7dfc06dde222" - ], - "x-ms-client-request-id": [ - "2d4b8509-0362-4c07-bb87-9fa91ffab433-2015-12-29 11:44:47Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "8a86c210-a84f-4fea-831e-7dfc06dde222" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114449Z:8a86c210-a84f-4fea-831e-7dfc06dde222" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:49 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4407/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDQwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a72afac-a90e-4cd4-b191-24fc56dd1abc-2015-12-29 11:44:48Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1de54e73-fff8-4b5e-95e2-d1424790fe32" - ], - "x-ms-client-request-id": [ - "1a72afac-a90e-4cd4-b191-24fc56dd1abc-2015-12-29 11:44:48Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "1de54e73-fff8-4b5e-95e2-d1424790fe32" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114449Z:1de54e73-fff8-4b5e-95e2-d1424790fe32" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:49 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4759/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDc1OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b3842c56-d359-469b-8dd0-ede963c57f37-2015-12-29 11:44:49Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cdd04574-9e9b-407d-8750-e8ca882dffdf" - ], - "x-ms-client-request-id": [ - "b3842c56-d359-469b-8dd0-ede963c57f37-2015-12-29 11:44:49Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "cdd04574-9e9b-407d-8750-e8ca882dffdf" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114450Z:cdd04574-9e9b-407d-8750-e8ca882dffdf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:50 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4952/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDk1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e00f3093-84e1-42e2-a986-c6e24e8bd010-2015-12-29 11:44:49Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4b7df4d9-fd13-4350-b4a9-9107fb5e123b" - ], - "x-ms-client-request-id": [ - "e00f3093-84e1-42e2-a986-c6e24e8bd010-2015-12-29 11:44:49Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-correlation-request-id": [ - "4b7df4d9-fd13-4350-b4a9-9107fb5e123b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114450Z:4b7df4d9-fd13-4350-b4a9-9107fb5e123b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:50 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5025/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "92eb5d31-ff15-4a2b-bf4b-6a82a82220c5-2015-12-29 11:44:50Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "43d8e7aa-271c-42bf-ba6a-87a4b10af47c" - ], - "x-ms-client-request-id": [ - "92eb5d31-ff15-4a2b-bf4b-6a82a82220c5-2015-12-29 11:44:50Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "43d8e7aa-271c-42bf-ba6a-87a4b10af47c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114451Z:43d8e7aa-271c-42bf-ba6a-87a4b10af47c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:51 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5224/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "af339526-76be-4bc9-ac1f-15f5da6eacb9-2015-12-29 11:44:50Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "695861ae-2d41-4390-ac89-50c4c5e4381d" - ], - "x-ms-client-request-id": [ - "af339526-76be-4bc9-ac1f-15f5da6eacb9-2015-12-29 11:44:50Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "695861ae-2d41-4390-ac89-50c4c5e4381d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114452Z:695861ae-2d41-4390-ac89-50c4c5e4381d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:51 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5285/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTI4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ceab563-638a-4e43-8b9c-7e6276ad2751-2015-12-29 11:44:51Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d310595a-5d90-4166-9088-a1a6b59bb11e" - ], - "x-ms-client-request-id": [ - "4ceab563-638a-4e43-8b9c-7e6276ad2751-2015-12-29 11:44:51Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-correlation-request-id": [ - "d310595a-5d90-4166-9088-a1a6b59bb11e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114452Z:d310595a-5d90-4166-9088-a1a6b59bb11e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:52 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5352/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTM1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "95abbe94-3ef6-4c72-8875-d1acfa6c7826-2015-12-29 11:44:52Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9e2951be-6ee1-4f04-907e-98d717288c69" - ], - "x-ms-client-request-id": [ - "95abbe94-3ef6-4c72-8875-d1acfa6c7826-2015-12-29 11:44:52Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "9e2951be-6ee1-4f04-907e-98d717288c69" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114453Z:9e2951be-6ee1-4f04-907e-98d717288c69" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:52 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5520/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6a88f83a-5b3d-4336-9736-bad30d94a8b9-2015-12-29 11:44:52Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "994094e8-1b76-4979-b87f-21389af904ac" - ], - "x-ms-client-request-id": [ - "6a88f83a-5b3d-4336-9736-bad30d94a8b9-2015-12-29 11:44:52Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-correlation-request-id": [ - "994094e8-1b76-4979-b87f-21389af904ac" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114453Z:994094e8-1b76-4979-b87f-21389af904ac" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5591/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTU5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0f83e860-deb0-448c-a368-bee9e8fc042f-2015-12-29 11:44:53Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c6003093-e075-4a3f-b9d6-4a0d385ebc11" - ], - "x-ms-client-request-id": [ - "0f83e860-deb0-448c-a368-bee9e8fc042f-2015-12-29 11:44:53Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "c6003093-e075-4a3f-b9d6-4a0d385ebc11" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114454Z:c6003093-e075-4a3f-b9d6-4a0d385ebc11" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5803/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1e73722-a254-49ef-8559-28649db684e5-2015-12-29 11:44:53Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "129f186b-3b6f-46d5-9b24-8dacbc7e246d" - ], - "x-ms-client-request-id": [ - "a1e73722-a254-49ef-8559-28649db684e5-2015-12-29 11:44:53Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-correlation-request-id": [ - "129f186b-3b6f-46d5-9b24-8dacbc7e246d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114454Z:129f186b-3b6f-46d5-9b24-8dacbc7e246d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:54 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5924/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "743dff5b-0bb4-471d-a1ce-d8b5ba637332-2015-12-29 11:44:54Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a8a3356c-a5a8-4cfb-902d-4b202d55fa93" - ], - "x-ms-client-request-id": [ - "743dff5b-0bb4-471d-a1ce-d8b5ba637332-2015-12-29 11:44:54Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "a8a3356c-a5a8-4cfb-902d-4b202d55fa93" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114455Z:a8a3356c-a5a8-4cfb-902d-4b202d55fa93" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:54 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6057/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d12b0829-2dc3-4490-8899-6fde91bf783d-2015-12-29 11:44:54Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "48f0dfd7-68f6-4da3-ad14-42ab56ff5740" - ], - "x-ms-client-request-id": [ - "d12b0829-2dc3-4490-8899-6fde91bf783d-2015-12-29 11:44:54Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "48f0dfd7-68f6-4da3-ad14-42ab56ff5740" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114456Z:48f0dfd7-68f6-4da3-ad14-42ab56ff5740" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:56 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6147/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjE0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "94f87279-f648-46e8-a334-9d3a27d94253-2015-12-29 11:44:55Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1f368b3c-a68a-4bd0-a9a6-10b61da07d48" - ], - "x-ms-client-request-id": [ - "94f87279-f648-46e8-a334-9d3a27d94253-2015-12-29 11:44:55Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "1f368b3c-a68a-4bd0-a9a6-10b61da07d48" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114456Z:1f368b3c-a68a-4bd0-a9a6-10b61da07d48" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:56 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6244/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "18ebdb1d-638d-427f-ba45-a5c916b46538-2015-12-29 11:44:56Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eda5daf5-332e-4bcd-94bc-4ee8dcc7aecd" - ], - "x-ms-client-request-id": [ - "18ebdb1d-638d-427f-ba45-a5c916b46538-2015-12-29 11:44:56Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "eda5daf5-332e-4bcd-94bc-4ee8dcc7aecd" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114457Z:eda5daf5-332e-4bcd-94bc-4ee8dcc7aecd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:57 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6373/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM3My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "501fdfeb-dce5-454a-9a46-0edd3d9f15b7-2015-12-29 11:44:56Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1b5c8c50-303b-4745-9d7b-c1280a3dfb63" - ], - "x-ms-client-request-id": [ - "501fdfeb-dce5-454a-9a46-0edd3d9f15b7-2015-12-29 11:44:56Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "1b5c8c50-303b-4745-9d7b-c1280a3dfb63" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114457Z:1b5c8c50-303b-4745-9d7b-c1280a3dfb63" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:57 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6426/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjQyNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "512c30e3-2100-4a00-9158-5d4c7b8820b0-2015-12-29 11:44:57Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d5e01804-2162-4ceb-aeb4-08d3a2780a78" - ], - "x-ms-client-request-id": [ - "512c30e3-2100-4a00-9158-5d4c7b8820b0-2015-12-29 11:44:57Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "d5e01804-2162-4ceb-aeb4-08d3a2780a78" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114458Z:d5e01804-2162-4ceb-aeb4-08d3a2780a78" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:58 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6483/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3c3589bd-466e-455d-8328-3683beda9926-2015-12-29 11:44:57Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ad5c0101-826d-457a-9852-470da4e044b3" - ], - "x-ms-client-request-id": [ - "3c3589bd-466e-455d-8328-3683beda9926-2015-12-29 11:44:57Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], - "x-ms-correlation-request-id": [ - "ad5c0101-826d-457a-9852-470da4e044b3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114458Z:ad5c0101-826d-457a-9852-470da4e044b3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:58 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6501/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjUwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "54f8c129-7cb7-4629-ae5d-c41a2521d153-2015-12-29 11:44:58Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b9598062-8ac3-422f-a965-76cfd136cd69" - ], - "x-ms-client-request-id": [ - "54f8c129-7cb7-4629-ae5d-c41a2521d153-2015-12-29 11:44:58Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" - ], - "x-ms-correlation-request-id": [ - "b9598062-8ac3-422f-a965-76cfd136cd69" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114459Z:b9598062-8ac3-422f-a965-76cfd136cd69" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:59 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6607/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjYwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5aaf6103-aa07-4233-8f79-83dfee64e5f5-2015-12-29 11:44:58Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3d3a7232-a207-41b8-8a20-4e168e0a63db" - ], - "x-ms-client-request-id": [ - "5aaf6103-aa07-4233-8f79-83dfee64e5f5-2015-12-29 11:44:58Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" - ], - "x-ms-correlation-request-id": [ - "3d3a7232-a207-41b8-8a20-4e168e0a63db" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114500Z:3d3a7232-a207-41b8-8a20-4e168e0a63db" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:44:59 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6658/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "347a12cf-a3d0-4d87-a382-b81c3fad6ac2-2015-12-29 11:44:59Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8fcf7790-b522-4462-8305-9f04d4a6139d" - ], - "x-ms-client-request-id": [ - "347a12cf-a3d0-4d87-a382-b81c3fad6ac2-2015-12-29 11:44:59Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" - ], - "x-ms-correlation-request-id": [ - "8fcf7790-b522-4462-8305-9f04d4a6139d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114500Z:8fcf7790-b522-4462-8305-9f04d4a6139d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:00 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6810/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6f38c785-a5a1-4049-826a-4310650bfbef-2015-12-29 11:45:00Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6dc4546b-0130-4867-be46-0d23f5568ac8" - ], - "x-ms-client-request-id": [ - "6f38c785-a5a1-4049-826a-4310650bfbef-2015-12-29 11:45:00Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" - ], - "x-ms-correlation-request-id": [ - "6dc4546b-0130-4867-be46-0d23f5568ac8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114501Z:6dc4546b-0130-4867-be46-0d23f5568ac8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:00 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7193/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzE5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bac8fb9c-7750-4eb7-86b4-c089a3e54f77-2015-12-29 11:45:00Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8486d98f-3c0f-48fb-a9ed-3ee660346310" - ], - "x-ms-client-request-id": [ - "bac8fb9c-7750-4eb7-86b4-c089a3e54f77-2015-12-29 11:45:00Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" - ], - "x-ms-correlation-request-id": [ - "8486d98f-3c0f-48fb-a9ed-3ee660346310" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114502Z:8486d98f-3c0f-48fb-a9ed-3ee660346310" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:01 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7279/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzI3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "93e8ad61-002b-4819-921f-4650f12fce97-2015-12-29 11:45:01Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6739af04-e87c-4b03-9d61-ed9ab9ddeb67" - ], - "x-ms-client-request-id": [ - "93e8ad61-002b-4819-921f-4650f12fce97-2015-12-29 11:45:01Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" - ], - "x-ms-correlation-request-id": [ - "6739af04-e87c-4b03-9d61-ed9ab9ddeb67" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114502Z:6739af04-e87c-4b03-9d61-ed9ab9ddeb67" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:01 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7537/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "696cb266-f3a7-43dd-a3a3-527314a08cba-2015-12-29 11:45:02Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e2b6197d-b2e2-440c-8a50-909f8266094d" - ], - "x-ms-client-request-id": [ - "696cb266-f3a7-43dd-a3a3-527314a08cba-2015-12-29 11:45:02Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "e2b6197d-b2e2-440c-8a50-909f8266094d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114503Z:e2b6197d-b2e2-440c-8a50-909f8266094d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:03 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7542/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75591e3b-f9e7-41e7-a0fd-b4690b5ac689-2015-12-29 11:45:02Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3701d9ef-cac5-4ded-8139-01ebf9bd59bc" - ], - "x-ms-client-request-id": [ - "75591e3b-f9e7-41e7-a0fd-b4690b5ac689-2015-12-29 11:45:02Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" - ], - "x-ms-correlation-request-id": [ - "3701d9ef-cac5-4ded-8139-01ebf9bd59bc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114503Z:3701d9ef-cac5-4ded-8139-01ebf9bd59bc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:03 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7741/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzc0MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2508ef27-be74-49c8-aa0b-9dbe28ea5b41-2015-12-29 11:45:03Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5a03e64f-ea34-48b2-9325-04b5c20e72fb" - ], - "x-ms-client-request-id": [ - "2508ef27-be74-49c8-aa0b-9dbe28ea5b41-2015-12-29 11:45:03Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" - ], - "x-ms-correlation-request-id": [ - "5a03e64f-ea34-48b2-9325-04b5c20e72fb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114504Z:5a03e64f-ea34-48b2-9325-04b5c20e72fb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:04 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8298/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d138320-c7dc-4742-bc98-681d226536c1-2015-12-29 11:45:03Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "36934181-ff79-4ef8-985e-e4c080953e8b" - ], - "x-ms-client-request-id": [ - "4d138320-c7dc-4742-bc98-681d226536c1-2015-12-29 11:45:03Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" - ], - "x-ms-correlation-request-id": [ - "36934181-ff79-4ef8-985e-e4c080953e8b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114504Z:36934181-ff79-4ef8-985e-e4c080953e8b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:04 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8383/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODM4My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c5880f33-5900-46ec-8962-1715f328227a-2015-12-29 11:45:04Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "991662b8-7924-4906-9a8f-646f40e54bc6" - ], - "x-ms-client-request-id": [ - "c5880f33-5900-46ec-8962-1715f328227a-2015-12-29 11:45:04Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" - ], - "x-ms-correlation-request-id": [ - "991662b8-7924-4906-9a8f-646f40e54bc6" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114505Z:991662b8-7924-4906-9a8f-646f40e54bc6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:05 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8501/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODUwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "abe509da-7a53-4435-a759-38679c00117d-2015-12-29 11:45:04Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "540dc69f-bda7-4448-99d4-44f45e25beea" - ], - "x-ms-client-request-id": [ - "abe509da-7a53-4435-a759-38679c00117d-2015-12-29 11:45:04Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" - ], - "x-ms-correlation-request-id": [ - "540dc69f-bda7-4448-99d4-44f45e25beea" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114506Z:540dc69f-bda7-4448-99d4-44f45e25beea" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:05 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8568/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODU2OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "24f86f7e-dd10-426b-8268-15441c584041-2015-12-29 11:45:05Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cb4d6510-3f6e-4562-be47-1267d75a584d" - ], - "x-ms-client-request-id": [ - "24f86f7e-dd10-426b-8268-15441c584041-2015-12-29 11:45:05Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" - ], - "x-ms-correlation-request-id": [ - "cb4d6510-3f6e-4562-be47-1267d75a584d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114506Z:cb4d6510-3f6e-4562-be47-1267d75a584d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:06 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg890/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2bb8a1e3-ccfc-4b46-b064-1770c8f7b18d-2015-12-29 11:45:06Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0068fe32-764b-4116-95fc-27c71c4f4da5" - ], - "x-ms-client-request-id": [ - "2bb8a1e3-ccfc-4b46-b064-1770c8f7b18d-2015-12-29 11:45:06Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], - "x-ms-correlation-request-id": [ - "0068fe32-764b-4116-95fc-27c71c4f4da5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114507Z:0068fe32-764b-4116-95fc-27c71c4f4da5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:06 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8926/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODkyNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d905f47b-aa62-4fbd-95cd-2c6e300cf410-2015-12-29 11:45:06Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1ec5fed7-af1f-4974-876b-593955e53bc3" - ], - "x-ms-client-request-id": [ - "d905f47b-aa62-4fbd-95cd-2c6e300cf410-2015-12-29 11:45:06Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" - ], - "x-ms-correlation-request-id": [ - "1ec5fed7-af1f-4974-876b-593955e53bc3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114507Z:1ec5fed7-af1f-4974-876b-593955e53bc3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:07 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9020/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTAyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "44c19ac8-25be-4913-a9d4-71760060c7f5-2015-12-29 11:45:07Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "95b48c7a-5f8b-4c2e-952a-9635863d3567" - ], - "x-ms-client-request-id": [ - "44c19ac8-25be-4913-a9d4-71760060c7f5-2015-12-29 11:45:07Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" - ], - "x-ms-correlation-request-id": [ - "95b48c7a-5f8b-4c2e-952a-9635863d3567" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114508Z:95b48c7a-5f8b-4c2e-952a-9635863d3567" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:07 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9059/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9e4b87cd-38e7-449e-b8c5-17719738b7aa-2015-12-29 11:45:07Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "50c10a6c-6229-4663-b8fb-b6e480ba632d" - ], - "x-ms-client-request-id": [ - "9e4b87cd-38e7-449e-b8c5-17719738b7aa-2015-12-29 11:45:07Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" - ], - "x-ms-correlation-request-id": [ - "50c10a6c-6229-4663-b8fb-b6e480ba632d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114509Z:50c10a6c-6229-4663-b8fb-b6e480ba632d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:09 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9228/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88a19574-8b6b-45be-95a2-c0c7773a4fe3-2015-12-29 11:45:08Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bf9a0599-6326-411c-9580-2406b3e06149" - ], - "x-ms-client-request-id": [ - "88a19574-8b6b-45be-95a2-c0c7773a4fe3-2015-12-29 11:45:08Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" - ], - "x-ms-correlation-request-id": [ - "bf9a0599-6326-411c-9580-2406b3e06149" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114509Z:bf9a0599-6326-411c-9580-2406b3e06149" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:09 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9372/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTM3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "32f5813e-ecb7-44ce-bbee-6af79bb91222-2015-12-29 11:45:09Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f5b3d44a-b090-4c63-8041-24c5fcfc18c3" - ], - "x-ms-client-request-id": [ - "32f5813e-ecb7-44ce-bbee-6af79bb91222-2015-12-29 11:45:09Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" - ], - "x-ms-correlation-request-id": [ - "f5b3d44a-b090-4c63-8041-24c5fcfc18c3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114510Z:f5b3d44a-b090-4c63-8041-24c5fcfc18c3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:10 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9417/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTQxNy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3cea7ff6-8b2d-4dea-b973-d5433a10415c-2015-12-29 11:45:09Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "073e5aa8-9ad3-4a0d-8023-611d6fee7525" - ], - "x-ms-client-request-id": [ - "3cea7ff6-8b2d-4dea-b973-d5433a10415c-2015-12-29 11:45:09Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" - ], - "x-ms-correlation-request-id": [ - "073e5aa8-9ad3-4a0d-8023-611d6fee7525" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114510Z:073e5aa8-9ad3-4a0d-8023-611d6fee7525" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:10 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg948/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1502ae0a-b496-412e-9412-f6034bf43ced-2015-12-29 11:45:10Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "af2c6c53-84b0-4130-9e05-9fcf0144ad89" - ], - "x-ms-client-request-id": [ - "1502ae0a-b496-412e-9412-f6034bf43ced-2015-12-29 11:45:10Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" - ], - "x-ms-correlation-request-id": [ - "af2c6c53-84b0-4130-9e05-9fcf0144ad89" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114511Z:af2c6c53-84b0-4130-9e05-9fcf0144ad89" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:11 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9646/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8601ad25-8812-4f56-a5f6-bc6b06837961-2015-12-29 11:45:10Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5fd78529-c749-4435-9147-de99ed1a7639" - ], - "x-ms-client-request-id": [ - "8601ad25-8812-4f56-a5f6-bc6b06837961-2015-12-29 11:45:10Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-correlation-request-id": [ - "5fd78529-c749-4435-9147-de99ed1a7639" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114511Z:5fd78529-c749-4435-9147-de99ed1a7639" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:11 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9667/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d985d82a-b24e-490f-951e-03f0e8ba25f7-2015-12-29 11:45:11Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7f9336e1-629c-48bc-a715-2d322b9bc317" - ], - "x-ms-client-request-id": [ - "d985d82a-b24e-490f-951e-03f0e8ba25f7-2015-12-29 11:45:11Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" - ], - "x-ms-correlation-request-id": [ - "7f9336e1-629c-48bc-a715-2d322b9bc317" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114512Z:7f9336e1-629c-48bc-a715-2d322b9bc317" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:12 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9696/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "abe007a9-bca6-48fc-bc52-834b210ed9ed-2015-12-29 11:45:11Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "44ac13b5-fdc5-4793-9577-8fee95d8f8db" - ], - "x-ms-client-request-id": [ - "abe007a9-bca6-48fc-bc52-834b210ed9ed-2015-12-29 11:45:11Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" - ], - "x-ms-correlation-request-id": [ - "44ac13b5-fdc5-4793-9577-8fee95d8f8db" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114513Z:44ac13b5-fdc5-4793-9577-8fee95d8f8db" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:12 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Default-Networking/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTmV0d29ya2luZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "42bf496c-a3ed-4b2e-97ad-2a1d945f4301-2015-12-29 11:45:12Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "16c49a20-7f35-46ac-afd7-39be7cc09c37" - ], - "x-ms-client-request-id": [ - "42bf496c-a3ed-4b2e-97ad-2a1d945f4301-2015-12-29 11:45:12Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-correlation-request-id": [ - "16c49a20-7f35-46ac-afd7-39be7cc09c37" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114513Z:16c49a20-7f35-46ac-afd7-39be7cc09c37" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:13 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Default-Storage-WestUS/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ad75c763-370a-4f58-87bb-0c764f66e214-2015-12-29 11:45:13Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1f7f2fa3-88fa-4f68-998a-b9dfa11c7285" - ], - "x-ms-client-request-id": [ - "ad75c763-370a-4f58-87bb-0c764f66e214-2015-12-29 11:45:13Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" - ], - "x-ms-correlation-request-id": [ - "1f7f2fa3-88fa-4f68-998a-b9dfa11c7285" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114514Z:1f7f2fa3-88fa-4f68-998a-b9dfa11c7285" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:13 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/E2Atesting/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0UyQXRlc3RpbmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9b5fec2-6fb3-4609-9bbc-546d002f9b6f-2015-12-29 11:45:13Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "366088ea-7604-4455-944e-279a19b72648" - ], - "x-ms-client-request-id": [ - "d9b5fec2-6fb3-4609-9bbc-546d002f9b6f-2015-12-29 11:45:13Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], - "x-ms-correlation-request-id": [ - "366088ea-7604-4455-944e-279a19b72648" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114514Z:366088ea-7604-4455-944e-279a19b72648" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:14 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Gen2RG/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0dlbjJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a00d0674-9bf7-4298-a5c3-4e6c41239914-2015-12-29 11:45:14Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gen2Vault\",\r\n \"etag\": \"3f5e6f4b-26a5-4c53-a500-a1c04e4e5962\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Gen2RG/providers/Microsoft.RecoveryServicesBVTD2/vaults/Gen2Vault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "425" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "01604703-d77a-49f8-8902-2ccb31c0c47e" - ], - "x-ms-client-request-id": [ - "a00d0674-9bf7-4298-a5c3-4e6c41239914-2015-12-29 11:45:14Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" - ], - "x-ms-correlation-request-id": [ - "01604703-d77a-49f8-8902-2ccb31c0c47e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114515Z:01604703-d77a-49f8-8902-2ccb31c0c47e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:14 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/latestrg/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2xhdGVzdHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b9168079-74da-4ef5-a23e-20e1a17ded07-2015-12-29 11:45:14Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cc34ce30-f37e-4171-8ca4-bb7872c44a1c" - ], - "x-ms-client-request-id": [ - "b9168079-74da-4ef5-a23e-20e1a17ded07-2015-12-29 11:45:14Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "cc34ce30-f37e-4171-8ca4-bb7872c44a1c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114516Z:cc34ce30-f37e-4171-8ca4-bb7872c44a1c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:16 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/LJSam/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0xKU2FtL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7520e918-3234-4589-863d-d137db675256-2015-12-29 11:45:15Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f283d4e9-e2e4-458d-b45a-5a095fd638d1" - ], - "x-ms-client-request-id": [ - "7520e918-3234-4589-863d-d137db675256-2015-12-29 11:45:15Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" - ], - "x-ms-correlation-request-id": [ - "f283d4e9-e2e4-458d-b45a-5a095fd638d1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114516Z:f283d4e9-e2e4-458d-b45a-5a095fd638d1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:16 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/MukeshTestRG/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL011a2VzaFRlc3RSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ca86e3bc-bc29-4474-8652-9d5bf904acd7-2015-12-29 11:45:15Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5a3ac4a6-6dd7-46f5-84a8-6137c0f83c85" - ], - "x-ms-client-request-id": [ - "ca86e3bc-bc29-4474-8652-9d5bf904acd7-2015-12-29 11:45:15Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-correlation-request-id": [ - "5a3ac4a6-6dd7-46f5-84a8-6137c0f83c85" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114517Z:5a3ac4a6-6dd7-46f5-84a8-6137c0f83c85" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:17 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/newe2arg/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL25ld2UyYXJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "edbb54ee-0447-44da-be09-d5e2293c9b1f-2015-12-29 11:45:16Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newe2avault\",\r\n \"etag\": \"58d36a99-d839-415b-95ce-179c1f5781e9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/newe2arg/providers/Microsoft.RecoveryServicesBVTD2/vaults/newe2avault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "438" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6e059dad-afd5-4461-a487-d1d1cee36e3d" - ], - "x-ms-client-request-id": [ - "edbb54ee-0447-44da-be09-d5e2293c9b1f-2015-12-29 11:45:16Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-correlation-request-id": [ - "6e059dad-afd5-4461-a487-d1d1cee36e3d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114517Z:6e059dad-afd5-4461-a487-d1d1cee36e3d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:17 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-Southeast-Asia/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtMllFVUlLWE82QTRWN0RXS1o0RFBKTFVXWTdMWFRBNkdFNzJYUkFEU1BGRURYNzZWN1lTQS1Tb3V0aGVhc3QtQXNpYS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ffbdf55-1a10-466d-8d73-2ec57d24d53a-2015-12-29 11:45:17Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "965d773a-7983-4f95-9075-0351864b9229" - ], - "x-ms-client-request-id": [ - "3ffbdf55-1a10-466d-8d73-2ec57d24d53a-2015-12-29 11:45:17Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-correlation-request-id": [ - "965d773a-7983-4f95-9075-0351864b9229" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114518Z:965d773a-7983-4f95-9075-0351864b9229" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:18 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-West-US/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtMllFVUlLWE82QTRWN0RXS1o0RFBKTFVXWTdMWFRBNkdFNzJYUkFEU1BGRURYNzZWN1lTQS1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c23b01c9-4477-410b-b71a-8ac1609d898c-2015-12-29 11:45:17Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0b2bc3fc-1dbf-4854-953d-6b4f9df520a1" - ], - "x-ms-client-request-id": [ - "c23b01c9-4477-410b-b71a-8ac1609d898c-2015-12-29 11:45:17Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-correlation-request-id": [ - "0b2bc3fc-1dbf-4854-953d-6b4f9df520a1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114518Z:0b2bc3fc-1dbf-4854-953d-6b4f9df520a1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:18 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServicesRG/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXNSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b86877b-20ba-42da-9089-c165d94196ed-2015-12-29 11:45:18Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ramjsingRSVault\",\r\n \"etag\": \"f63cc902-6055-4cb1-bacf-84029988df75\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServicesRG/providers/Microsoft.RecoveryServicesBVTD2/vaults/ramjsingRSVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "449" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2fb4d978-dcaa-470b-99f4-e5ba48c82952" - ], - "x-ms-client-request-id": [ - "3b86877b-20ba-42da-9089-c165d94196ed-2015-12-29 11:45:18Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-correlation-request-id": [ - "2fb4d978-dcaa-470b-99f4-e5ba48c82952" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114519Z:2fb4d978-dcaa-470b-99f4-e5ba48c82952" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:19 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6160b2b0-7bea-41e8-8f00-11e42c5e989c-2015-12-29 11:45:18Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"v1\",\r\n \"etag\": \"c98ef3e7-2f00-4179-ab5e-31384b2066dc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/v1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "13c7a6c6-d777-4a19-81d3-073e69643862" - ], - "x-ms-client-request-id": [ - "6160b2b0-7bea-41e8-8f00-11e42c5e989c-2015-12-29 11:45:18Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" - ], - "x-ms-correlation-request-id": [ - "13c7a6c6-d777-4a19-81d3-073e69643862" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114520Z:13c7a6c6-d777-4a19-81d3-073e69643862" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:19 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg2testE2Afor10_2/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3JnMnRlc3RFMkFmb3IxMF8yL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f383b060-5ae1-4e53-85be-8654960bc442-2015-12-29 11:45:19Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d1330c8b-b6db-4ca1-abd3-d6800d4fb371" - ], - "x-ms-client-request-id": [ - "f383b060-5ae1-4e53-85be-8654960bc442-2015-12-29 11:45:19Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" - ], - "x-ms-correlation-request-id": [ - "d1330c8b-b6db-4ca1-abd3-d6800d4fb371" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114520Z:d1330c8b-b6db-4ca1-abd3-d6800d4fb371" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1MwMS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c8689b5c-aa64-414d-8975-ac39681ae88f-2015-12-29 11:45:20Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S01-1-2-3-4-5\",\r\n \"etag\": \"7e6c145b-2d4b-43b9-8975-b8593d8d1510\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S01-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5057bb6c-24a0-43de-a647-11dd897676c5" - ], - "x-ms-client-request-id": [ - "c8689b5c-aa64-414d-8975-ac39681ae88f-2015-12-29 11:45:20Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" - ], - "x-ms-correlation-request-id": [ - "5057bb6c-24a0-43de-a647-11dd897676c5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114521Z:5057bb6c-24a0-43de-a647-11dd897676c5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-2776b10c/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1MwMS0yNzc2YjEwYy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d9eb6033-a413-4997-a6e6-e2d9e9a072b0-2015-12-29 11:45:20Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S01-2776b10c-e054-40a5-99d7-8d79ec48fd2c\",\r\n \"etag\": \"aec9a420-83ee-4e3e-843a-3c408e99520c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-2776b10c/providers/Microsoft.RecoveryServicesBVTD2/vaults/S01-2776b10c-e054-40a5-99d7-8d79ec48fd2c\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "493" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "35958ece-6851-4845-af84-06b36dd99941" - ], - "x-ms-client-request-id": [ - "d9eb6033-a413-4997-a6e6-e2d9e9a072b0-2015-12-29 11:45:20Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" - ], - "x-ms-correlation-request-id": [ - "35958ece-6851-4845-af84-06b36dd99941" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114521Z:35958ece-6851-4845-af84-06b36dd99941" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:21 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S101-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1MxMDEtMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c7e45d14-499d-4453-b663-770a9be09639-2015-12-29 11:45:21Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S101-1-2-3-4-5\",\r\n \"etag\": \"d29e6190-bc30-41d7-9c5f-5dc98571bb49\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S101-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S101-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "435" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7a0f4f4a-3fcf-4a3c-b480-1fd4ba38b051" - ], - "x-ms-client-request-id": [ - "c7e45d14-499d-4453-b663-770a9be09639-2015-12-29 11:45:21Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" - ], - "x-ms-correlation-request-id": [ - "7a0f4f4a-3fcf-4a3c-b480-1fd4ba38b051" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114522Z:7a0f4f4a-3fcf-4a3c-b480-1fd4ba38b051" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:21 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S102-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1MxMDItMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0204ca06-c600-40d4-acd3-bbd29071d503-2015-12-29 11:45:21Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S102-1-2-3-4-5\",\r\n \"etag\": \"24738a5a-3389-4ed8-b132-fda9d1e07f8f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S102-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S102-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "435" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "155a141a-68f8-459b-9a79-cd1919154ec5" - ], - "x-ms-client-request-id": [ - "0204ca06-c600-40d4-acd3-bbd29071d503-2015-12-29 11:45:21Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" - ], - "x-ms-correlation-request-id": [ - "155a141a-68f8-459b-9a79-cd1919154ec5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114523Z:155a141a-68f8-459b-9a79-cd1919154ec5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:22 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S53-4cddea50/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M1My00Y2RkZWE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8cfbb8a9-1519-410e-a30b-99f19c04f7b2-2015-12-29 11:45:22Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S53-4cddea50-f93d-4012-b635-b9913cd61600\",\r\n \"etag\": \"890472ff-bba9-4c13-9604-b7913f3247be\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S53-4cddea50/providers/Microsoft.RecoveryServicesBVTD2/vaults/S53-4cddea50-f93d-4012-b635-b9913cd61600\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "493" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1ba166cf-1401-43e0-af48-0be3bf876a1a" - ], - "x-ms-client-request-id": [ - "8cfbb8a9-1519-410e-a30b-99f19c04f7b2-2015-12-29 11:45:22Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" - ], - "x-ms-correlation-request-id": [ - "1ba166cf-1401-43e0-af48-0be3bf876a1a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114523Z:1ba166cf-1401-43e0-af48-0be3bf876a1a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:22 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/s57-1234/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3M1Ny0xMjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6724ac75-72c8-44c6-8d7e-36206ba43b79-2015-12-29 11:45:23Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"s57-1234-5678-1234-5678\",\r\n \"etag\": \"d1534454-361f-421b-b6d4-af641e4fc7e1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/s57-1234/providers/Microsoft.RecoveryServicesBVTD2/vaults/s57-1234-5678-1234-5678\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "455" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eb5a260d-893e-4909-a091-455e3d69ac1e" - ], - "x-ms-client-request-id": [ - "6724ac75-72c8-44c6-8d7e-36206ba43b79-2015-12-29 11:45:23Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" - ], - "x-ms-correlation-request-id": [ - "eb5a260d-893e-4909-a091-455e3d69ac1e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114524Z:eb5a260d-893e-4909-a091-455e3d69ac1e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:24 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S59-92fc5083/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M1OS05MmZjNTA4My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ed38b51-e3a0-4c34-b2c9-e724b72ca5cc-2015-12-29 11:45:23Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S59-92fc5083-0e86-4e87-8b4a-ad2b771ee41d\",\r\n \"etag\": \"8afde1e2-0ed2-4764-94a2-df1e4b6174ac\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S59-92fc5083/providers/Microsoft.RecoveryServicesBVTD2/vaults/S59-92fc5083-0e86-4e87-8b4a-ad2b771ee41d\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "493" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "38f66284-1628-4754-849e-1acf3e5096a5" - ], - "x-ms-client-request-id": [ - "3ed38b51-e3a0-4c34-b2c9-e724b72ca5cc-2015-12-29 11:45:23Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" - ], - "x-ms-correlation-request-id": [ - "38f66284-1628-4754-849e-1acf3e5096a5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114525Z:38f66284-1628-4754-849e-1acf3e5096a5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:24 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S5-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M1LWZiMzY1Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "088e7ebb-de53-4941-a6a0-0508599c19f2-2015-12-29 11:45:24Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S5-fb365396-4715-41b6-b25c-cedf78501fa7\",\r\n \"etag\": \"51ce51ed-2de8-4ee8-8174-125e5b3e12fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S5-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults/S5-fb365396-4715-41b6-b25c-cedf78501fa7\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "490" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9011cb0d-8b60-47ed-bd75-5cd2829389ec" - ], - "x-ms-client-request-id": [ - "088e7ebb-de53-4941-a6a0-0508599c19f2-2015-12-29 11:45:24Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" - ], - "x-ms-correlation-request-id": [ - "9011cb0d-8b60-47ed-bd75-5cd2829389ec" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114525Z:9011cb0d-8b60-47ed-bd75-5cd2829389ec" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:25 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S8-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M4LWZiMzY1Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ac5f46c-0afb-41c8-beae-64a75152ab50-2015-12-29 11:45:24Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "213a37ba-e9ff-4c28-afa2-9a045992448d" - ], - "x-ms-client-request-id": [ - "9ac5f46c-0afb-41c8-beae-64a75152ab50-2015-12-29 11:45:24Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" - ], - "x-ms-correlation-request-id": [ - "213a37ba-e9ff-4c28-afa2-9a045992448d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114526Z:213a37ba-e9ff-4c28-afa2-9a045992448d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:25 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81487ac4-7224-4a4f-bdcc-8f77f495c4ff-2015-12-29 11:45:25Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"fa297d9b-4d18-442f-89af-1c3803cd2790\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"S91-1-2-3-4-5\",\r\n \"etag\": \"5c02c467-6d43-4b64-99dc-b73f201240b9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S91-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "835" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f0819eab-d639-4a02-9852-05a33533da74" - ], - "x-ms-client-request-id": [ - "81487ac4-7224-4a4f-bdcc-8f77f495c4ff-2015-12-29 11:45:25Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" - ], - "x-ms-correlation-request-id": [ - "f0819eab-d639-4a02-9852-05a33533da74" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114526Z:f0819eab-d639-4a02-9852-05a33533da74" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:26 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "136e9f7f-13aa-4134-8b4a-bea0f65a9e53-2015-12-29 11:45:34Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"fa297d9b-4d18-442f-89af-1c3803cd2790\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"S91-1-2-3-4-5\",\r\n \"etag\": \"5c02c467-6d43-4b64-99dc-b73f201240b9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S91-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "835" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "37c97860-f24b-4a25-b09b-db4a7a38c928" - ], - "x-ms-client-request-id": [ - "136e9f7f-13aa-4134-8b4a-bea0f65a9e53-2015-12-29 11:45:34Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" - ], - "x-ms-correlation-request-id": [ - "37c97860-f24b-4a25-b09b-db4a7a38c928" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114535Z:37c97860-f24b-4a25-b09b-db4a7a38c928" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:35 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ade7d52d-7da2-437f-9a09-120cd96b358e-2015-12-29 11:45:46Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S91-1-2-3-4-5\",\r\n \"etag\": \"5c02c467-6d43-4b64-99dc-b73f201240b9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S91-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "284d6866-77a7-498e-bfc4-d9c5ec5a0886" - ], - "x-ms-client-request-id": [ - "ade7d52d-7da2-437f-9a09-120cd96b358e-2015-12-29 11:45:46Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" - ], - "x-ms-correlation-request-id": [ - "284d6866-77a7-498e-bfc4-d9c5ec5a0886" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114548Z:284d6866-77a7-498e-bfc4-d9c5ec5a0886" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:48 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S96-12/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5Ni0xMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eff7c19a-f069-4f49-befe-a4b765ca60a4-2015-12-29 11:45:26Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S96-12-34-56-78-90\",\r\n \"etag\": \"a592bb44-8661-45b6-84cc-81ce124fc36d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S96-12/providers/Microsoft.RecoveryServicesBVTD2/vaults/S96-12-34-56-78-90\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "443" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9be71f5e-8008-422b-924d-3f874a389a43" - ], - "x-ms-client-request-id": [ - "eff7c19a-f069-4f49-befe-a4b765ca60a4-2015-12-29 11:45:26Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" - ], - "x-ms-correlation-request-id": [ - "9be71f5e-8008-422b-924d-3f874a389a43" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114527Z:9be71f5e-8008-422b-924d-3f874a389a43" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:26 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S9-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5LWZiMzY1Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4af2ca9d-6a94-442c-99ff-a28f415a312a-2015-12-29 11:45:26Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S9-fb365396-4715-41b6-b25c-cedf78501fa7\",\r\n \"etag\": \"73fb232c-7cee-4614-a406-f32ebb057139\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S9-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults/S9-fb365396-4715-41b6-b25c-cedf78501fa7\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "490" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "02b33747-fe4f-4a34-ab8b-0e1d1b48b1f7" - ], - "x-ms-client-request-id": [ - "4af2ca9d-6a94-442c-99ff-a28f415a312a-2015-12-29 11:45:26Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], - "x-ms-correlation-request-id": [ - "02b33747-fe4f-4a34-ab8b-0e1d1b48b1f7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114528Z:02b33747-fe4f-4a34-ab8b-0e1d1b48b1f7" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:28 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/sakulkar/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3Nha3Vsa2FyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31ba7687-88b2-4a5e-b6a4-fdc07b84f784-2015-12-29 11:45:27Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "370f0661-d060-49b3-8811-2e3c5730c425" - ], - "x-ms-client-request-id": [ - "31ba7687-88b2-4a5e-b6a4-fdc07b84f784-2015-12-29 11:45:27Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" - ], - "x-ms-correlation-request-id": [ - "370f0661-d060-49b3-8811-2e3c5730c425" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114528Z:370f0661-d060-49b3-8811-2e3c5730c425" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:28 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/sam1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a83b3c7-0ce9-4e7c-86a1-203ac922150d-2015-12-29 11:45:28Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "16260483-7662-4fce-b4f6-22122cc3231a" - ], - "x-ms-client-request-id": [ - "1a83b3c7-0ce9-4e7c-86a1-203ac922150d-2015-12-29 11:45:28Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" - ], - "x-ms-correlation-request-id": [ - "16260483-7662-4fce-b4f6-22122cc3231a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114529Z:16260483-7662-4fce-b4f6-22122cc3231a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samb2a/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbWIyYS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "76dd0962-e470-4f5d-af59-c33aa0ad2c31-2015-12-29 11:45:28Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"7d683461-90b0-439f-9f6e-97f84db76d17\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rs1\",\r\n \"etag\": \"09dda353-82f2-43b8-9a72-055e7970c924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rs1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"960e6084-4e68-46d8-b35a-4f6ef37c2504\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"vault1\",\r\n \"etag\": \"2dd4c58a-6e95-454d-a6b2-9aba2a6e8c5c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", "ResponseHeaders": { "Content-Length": [ - "12" + "1619" ], "Content-Type": [ "application/json" @@ -6148,28 +688,28 @@ "no-cache" ], "x-ms-request-id": [ - "9c7a1b6c-baee-4949-990b-90683927eea1" + "15c1d872-f1bd-4d2e-b773-11840547b799" ], "x-ms-client-request-id": [ - "76dd0962-e470-4f5d-af59-c33aa0ad2c31-2015-12-29 11:45:28Z-P" + "cf9cd1d3-3282-4d97-9999-4d8d7df24979-2016-03-19 09:22:43Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14989" ], "x-ms-correlation-request-id": [ - "9c7a1b6c-baee-4949-990b-90683927eea1" + "15c1d872-f1bd-4d2e-b773-11840547b799" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114529Z:9c7a1b6c-baee-4949-990b-90683927eea1" + "CENTRALUS:20160319T092243Z:15c1d872-f1bd-4d2e-b773-11840547b799" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:45:29 GMT" + "Sat, 19 Mar 2016 09:22:43 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -6178,13 +718,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhita/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbWhpdGEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "161123e3-8b17-4c07-9dff-a5d40f787540-2015-12-29 11:45:29Z-P" + "8b00c882-9cc2-4985-9162-2ca814cc386b-2016-03-19 09:22:46Z-P" ], "x-ms-version": [ "2015-01-01" @@ -6193,10 +733,10 @@ "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"7d683461-90b0-439f-9f6e-97f84db76d17\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rs1\",\r\n \"etag\": \"09dda353-82f2-43b8-9a72-055e7970c924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rs1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"960e6084-4e68-46d8-b35a-4f6ef37c2504\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"vault1\",\r\n \"etag\": \"2dd4c58a-6e95-454d-a6b2-9aba2a6e8c5c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", "ResponseHeaders": { "Content-Length": [ - "12" + "1619" ], "Content-Type": [ "application/json" @@ -6208,28 +748,28 @@ "no-cache" ], "x-ms-request-id": [ - "f2f73964-a3be-43c5-9785-277e10f0a2bc" + "8a5559d9-db75-4f0b-b9f1-fbfe3a3b94f8" ], "x-ms-client-request-id": [ - "161123e3-8b17-4c07-9dff-a5d40f787540-2015-12-29 11:45:29Z-P" + "8b00c882-9cc2-4985-9162-2ca814cc386b-2016-03-19 09:22:46Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14983" ], "x-ms-correlation-request-id": [ - "f2f73964-a3be-43c5-9785-277e10f0a2bc" + "8a5559d9-db75-4f0b-b9f1-fbfe3a3b94f8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114530Z:f2f73964-a3be-43c5-9785-277e10f0a2bc" + "CENTRALUS:20160319T092247Z:8a5559d9-db75-4f0b-b9f1-fbfe3a3b94f8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:45:30 GMT" + "Sat, 19 Mar 2016 09:22:46 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -6238,13 +778,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhitaE2A/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbWhpdGFFMkEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a4bdfe4-0c71-4838-b3aa-9b58a2c751a5-2015-12-29 11:45:29Z-P" + "aa60a720-fb8b-46ed-8112-e754f22f09db-2016-03-19 09:22:53Z-P" ], "x-ms-version": [ "2015-01-01" @@ -6253,10 +793,10 @@ "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"7d683461-90b0-439f-9f6e-97f84db76d17\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rs1\",\r\n \"etag\": \"09dda353-82f2-43b8-9a72-055e7970c924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rs1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"vault1\",\r\n \"etag\": \"2dd4c58a-6e95-454d-a6b2-9aba2a6e8c5c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", "ResponseHeaders": { "Content-Length": [ - "12" + "1218" ], "Content-Type": [ "application/json" @@ -6268,28 +808,28 @@ "no-cache" ], "x-ms-request-id": [ - "1bbe408f-603d-475f-8b33-f19762dd5598" + "b17bfae2-2c21-45d7-96ef-22b9b8542b04" ], "x-ms-client-request-id": [ - "7a4bdfe4-0c71-4838-b3aa-9b58a2c751a5-2015-12-29 11:45:29Z-P" + "aa60a720-fb8b-46ed-8112-e754f22f09db-2016-03-19 09:22:53Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14982" ], "x-ms-correlation-request-id": [ - "1bbe408f-603d-475f-8b33-f19762dd5598" + "b17bfae2-2c21-45d7-96ef-22b9b8542b04" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114531Z:1bbe408f-603d-475f-8b33-f19762dd5598" + "CENTRALUS:20160319T092254Z:b17bfae2-2c21-45d7-96ef-22b9b8542b04" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:45:30 GMT" + "Sat, 19 Mar 2016 09:22:53 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -6298,13 +838,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhitae2e/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbWhpdGFlMmUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a40b3477-8694-49fc-9572-87cfbf2065a4-2015-12-29 11:45:30Z-P" + "909abd83-7077-44e0-90c6-a7d8604142d0-2016-03-19 09:22:43Z-P" ], "x-ms-version": [ "2015-01-01" @@ -6328,28 +868,28 @@ "no-cache" ], "x-ms-request-id": [ - "e36bd807-9899-4ddd-9016-c079c789ec95" + "8d01d5b0-18ea-4535-9dc3-61bc7bf72e2d" ], "x-ms-client-request-id": [ - "a40b3477-8694-49fc-9572-87cfbf2065a4-2015-12-29 11:45:30Z-P" + "909abd83-7077-44e0-90c6-a7d8604142d0-2016-03-19 09:22:43Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14988" ], "x-ms-correlation-request-id": [ - "e36bd807-9899-4ddd-9016-c079c789ec95" + "8d01d5b0-18ea-4535-9dc3-61bc7bf72e2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114531Z:e36bd807-9899-4ddd-9016-c079c789ec95" + "CENTRALUS:20160319T092244Z:8d01d5b0-18ea-4535-9dc3-61bc7bf72e2d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:45:31 GMT" + "Sat, 19 Mar 2016 09:22:43 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -6358,13 +898,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/TemplateStore/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1RlbXBsYXRlU3RvcmUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JndGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed7d5d35-c52d-45c7-8a58-210d06d3d636-2015-12-29 11:45:31Z-P" + "7d9e7520-beeb-4c2b-a172-36cb11dc0999-2016-03-19 09:22:44Z-P" ], "x-ms-version": [ "2015-01-01" @@ -6388,148 +928,28 @@ "no-cache" ], "x-ms-request-id": [ - "bd787984-d199-467f-b4ab-e0589f1209db" - ], - "x-ms-client-request-id": [ - "ed7d5d35-c52d-45c7-8a58-210d06d3d636-2015-12-29 11:45:31Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" - ], - "x-ms-correlation-request-id": [ - "bd787984-d199-467f-b4ab-e0589f1209db" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114532Z:bd787984-d199-467f-b4ab-e0589f1209db" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:31 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-sea/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3ZhdWx0cy1yZXNvdXJjZWdyb3VwLXNlYS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eb48dd1f-7562-4cb4-a5c2-aab6ba8981eb-2015-12-29 11:45:31Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vault-bvt-arm-sea-02\",\r\n \"etag\": \"48b087d9-d41f-48e9-8cf0-2efe22423b33\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-sea/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault-bvt-arm-sea-02\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "472" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d2793198-46ec-40b8-a099-9826add277ae" - ], - "x-ms-client-request-id": [ - "eb48dd1f-7562-4cb4-a5c2-aab6ba8981eb-2015-12-29 11:45:31Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" - ], - "x-ms-correlation-request-id": [ - "d2793198-46ec-40b8-a099-9826add277ae" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114532Z:d2793198-46ec-40b8-a099-9826add277ae" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:32 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-wus/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3ZhdWx0cy1yZXNvdXJjZWdyb3VwLXd1cy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "309e4dac-e732-4624-8e20-746e5a5ea669-2015-12-29 11:45:32Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vault-bvt-arm-wus-01\",\r\n \"etag\": \"24418af8-ea28-44cd-998f-fcf064d2e728\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-wus/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault-bvt-arm-wus-01\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "465" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8812e93e-35f8-40af-b1bc-33fb7a90d3c3" + "346b0493-d39f-4663-815f-9cfdd12bed52" ], "x-ms-client-request-id": [ - "309e4dac-e732-4624-8e20-746e5a5ea669-2015-12-29 11:45:32Z-P" + "7d9e7520-beeb-4c2b-a172-36cb11dc0999-2016-03-19 09:22:44Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14987" ], "x-ms-correlation-request-id": [ - "8812e93e-35f8-40af-b1bc-33fb7a90d3c3" + "346b0493-d39f-4663-815f-9cfdd12bed52" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114533Z:8812e93e-35f8-40af-b1bc-33fb7a90d3c3" + "CENTRALUS:20160319T092245Z:346b0493-d39f-4663-815f-9cfdd12bed52" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:45:32 GMT" + "Sat, 19 Mar 2016 09:22:44 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -6538,13 +958,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/VS-testacc201-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1ZTLXRlc3RhY2MyMDEtR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3NpdGVSZWNvdmVyeVBQRUNTTVJHNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ad29e5a-f892-4eac-9274-c05f239a9ee6-2015-12-29 11:45:32Z-P" + "5ef20bae-e996-42a1-ae4c-34cf0341d3fa-2016-03-19 09:22:45Z-P" ], "x-ms-version": [ "2015-01-01" @@ -6568,28 +988,28 @@ "no-cache" ], "x-ms-request-id": [ - "d081f5ec-88cf-41c7-a2be-f39e50002e44" + "e64e3356-87b7-428a-9e3a-697a078598c9" ], "x-ms-client-request-id": [ - "6ad29e5a-f892-4eac-9274-c05f239a9ee6-2015-12-29 11:45:32Z-P" + "5ef20bae-e996-42a1-ae4c-34cf0341d3fa-2016-03-19 09:22:45Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14986" ], "x-ms-correlation-request-id": [ - "d081f5ec-88cf-41c7-a2be-f39e50002e44" + "e64e3356-87b7-428a-9e3a-697a078598c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114534Z:d081f5ec-88cf-41c7-a2be-f39e50002e44" + "CENTRALUS:20160319T092245Z:e64e3356-87b7-428a-9e3a-697a078598c9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:45:34 GMT" + "Sat, 19 Mar 2016 09:22:44 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -6598,13 +1018,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/VS-testacc203-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1ZTLXRlc3RhY2MyMDMtR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3Rlc3RCaWxsaW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8cb26f1-0c78-42f3-b572-8b7d399f9da3-2015-12-29 11:45:33Z-P" + "214bc507-6fe4-47a4-a5b0-27367a7635fe-2016-03-19 09:22:45Z-P" ], "x-ms-version": [ "2015-01-01" @@ -6628,28 +1048,28 @@ "no-cache" ], "x-ms-request-id": [ - "4a5685ec-171f-446d-9d12-1c71f5f8cfa4" + "73046362-8f5a-41d3-9de2-7d88687a376a" ], "x-ms-client-request-id": [ - "c8cb26f1-0c78-42f3-b572-8b7d399f9da3-2015-12-29 11:45:33Z-P" + "214bc507-6fe4-47a4-a5b0-27367a7635fe-2016-03-19 09:22:45Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14985" ], "x-ms-correlation-request-id": [ - "4a5685ec-171f-446d-9d12-1c71f5f8cfa4" + "73046362-8f5a-41d3-9de2-7d88687a376a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114534Z:4a5685ec-171f-446d-9d12-1c71f5f8cfa4" + "CENTRALUS:20160319T092246Z:73046362-8f5a-41d3-9de2-7d88687a376a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:45:34 GMT" + "Sat, 19 Mar 2016 09:22:45 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -6658,13 +1078,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1/extendedInformation/vaultExtendedInfo?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxL2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL1ZTLXZzby05LTI1LUdyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2e5226d-a013-4a00-964d-b0cf3c13065b-2015-12-29 11:45:35Z-P" + "eb81ef57-0afa-4436-87fe-dda0f532710b-2016-03-19 09:22:46Z-P" ], "x-ms-version": [ "2015-01-01" @@ -6673,10 +1093,10 @@ "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n },\r\n \"Values\": null\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "100" + "12" ], "Content-Type": [ "application/json" @@ -6688,158 +1108,28 @@ "no-cache" ], "x-ms-request-id": [ - "5f1a8842-0c90-433b-a828-501043dba90a" + "e07c28f8-e2d1-4280-a4c2-244de90de4d7" ], "x-ms-client-request-id": [ - "b2e5226d-a013-4a00-964d-b0cf3c13065b-2015-12-29 11:45:35Z-P" + "eb81ef57-0afa-4436-87fe-dda0f532710b-2016-03-19 09:22:46Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" - ], - "x-ms-correlation-request-id": [ - "5f1a8842-0c90-433b-a828-501043dba90a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114536Z:5f1a8842-0c90-433b-a828-501043dba90a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1/extendedInformation/vaultExtendedInfo?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxL2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"LQUxPE/QQG3mWxnhrCnikg==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "102" - ], - "x-ms-client-request-id": [ - "ed64de60-1c9c-414b-8f35-313053a84b47-2015-12-29 11:45:36Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"location\": null,\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"920bdf26-82fb-4da1-81b8-826bcec07ab9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"integrityKey\": \"LQUxPE/QQG3mWxnhrCnikg==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/extendedInformation\",\r\n \"sku\": null\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "428" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fadc36b8-db25-4dff-987c-7af053fce679" - ], - "x-ms-client-request-id": [ - "ed64de60-1c9c-414b-8f35-313053a84b47-2015-12-29 11:45:36Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "fadc36b8-db25-4dff-987c-7af053fce679" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114538Z:fadc36b8-db25-4dff-987c-7af053fce679" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 11:45:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1/certificates/rsv1cfead826-670f-4c45-8f3f-cfee4217d76b-12-29-2015-vaultcredentials?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxL2NlcnRpZmljYXRlcy9yc3YxY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiLTEyLTI5LTIwMTUtdmF1bHRjcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"certificate\": \"MIIC3TCCAcWgAwIBAgIQHcIHsy4NTqFKXnhM03IoszANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE1MTIyOTExMzUzNFoXDTE2MDEwMzExNDUzNFowHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJqqQ/YXEIM1ool4tjklkROrLXf04e4pvSpABMEuJPIij3l70RRXsmsoZflmHaHJK4Ey/3VTXfEwXGNIPXZo5Y9iE/2zGjROKcS1tViA55QXtJLuFE4jgZ5ur9J3YcwC6UhAcdeMMmAN8cOMAgFKUiqY6ScSYb3nHpm5DVw1VK+UlF0f94WX70Px79enuxSpRbVH2yOUh2lQ+3gIK+T+sSNOWTAK9rl4n/T3Qk87N8tHhQfv/q7Yqb5/vu5+nrpK5Sp4Hi4GmB/XaUr4SSgCbnr/hGvx4dejH7L7efxQ2geiyKTYkBUBq53IKG6FYWOvWSgDssRLW3WmZV4RiIc9xwECAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBAHnFSQBsFdSPZFyaElDMIJnrKIzr2j5gsAJCvY1RHl7VJwZ4l1YL4Cz4OcYTp+8AySvO5XX7bz/hENN9b9AO1F+E7yIPtqmB0BKYZ3gczCNyID8CBSzzohMvAEZAFCv9D5sgA5tvwZMzxjb+QpVV4P31VBaSkdXm0XKwFEl3VKqs+OcDe/gtHpdrchI0avB344MYpN1OgSY9l7kcMFcznHVMYYuOCy1gRii61IPk0LEwJLqQxpbQxu5C9USqEPaAoAqnjCkTAttRdQ2erNxYDSe8WOevecx0MOABT5oAaO6zw38Zl5yMsVcP5rEfAbBllSCfZOcFUd2znA0SKQhqFWU=\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1035" - ], - "x-ms-client-request-id": [ - "f57fb0eb-8894-4e93-bb77-b1b642a8ac29-2015-12-29 11:45:38Z-P" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"rsv1cfead826-670f-4c45-8f3f-cfee4217d76b-12-29-2015-vaultcredentials\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/certificates\",\r\n \"id\": \"/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1/certificates/rsv1cfead826-670f-4c45-8f3f-cfee4217d76b-12-29-2015-vaultcredentials\",\r\n \"properties\": {\r\n \"certificate\": \"MIIC3TCCAcWgAwIBAgIQHcIHsy4NTqFKXnhM03IoszANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE1MTIyOTExMzUzNFoXDTE2MDEwMzExNDUzNFowHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJqqQ/YXEIM1ool4tjklkROrLXf04e4pvSpABMEuJPIij3l70RRXsmsoZflmHaHJK4Ey/3VTXfEwXGNIPXZo5Y9iE/2zGjROKcS1tViA55QXtJLuFE4jgZ5ur9J3YcwC6UhAcdeMMmAN8cOMAgFKUiqY6ScSYb3nHpm5DVw1VK+UlF0f94WX70Px79enuxSpRbVH2yOUh2lQ+3gIK+T+sSNOWTAK9rl4n/T3Qk87N8tHhQfv/q7Yqb5/vu5+nrpK5Sp4Hi4GmB/XaUr4SSgCbnr/hGvx4dejH7L7efxQ2geiyKTYkBUBq53IKG6FYWOvWSgDssRLW3WmZV4RiIc9xwECAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBAHnFSQBsFdSPZFyaElDMIJnrKIzr2j5gsAJCvY1RHl7VJwZ4l1YL4Cz4OcYTp+8AySvO5XX7bz/hENN9b9AO1F+E7yIPtqmB0BKYZ3gczCNyID8CBSzzohMvAEZAFCv9D5sgA5tvwZMzxjb+QpVV4P31VBaSkdXm0XKwFEl3VKqs+OcDe/gtHpdrchI0avB344MYpN1OgSY9l7kcMFcznHVMYYuOCy1gRii61IPk0LEwJLqQxpbQxu5C9USqEPaAoAqnjCkTAttRdQ2erNxYDSe8WOevecx0MOABT5oAaO6zw38Zl5yMsVcP5rEfAbBllSCfZOcFUd2znA0SKQhqFWU=\",\r\n \"resourceId\": 2588873934503565988,\r\n \"globalAcsNamespace\": \"seabvtd2rrp1users\",\r\n \"globalAcsHostName\": \"accesscontrol.windows.net\",\r\n \"globalAcsRPRealm\": \"http://windowscloudbackup/m3\",\r\n \"subject\": \"CN=Windows Azure Tools\",\r\n \"validFrom\": \"2015-12-29T17:05:34+05:30\",\r\n \"validTo\": \"2016-01-03T17:15:34+05:30\",\r\n \"thumbprint\": \"F35827AA64456B83AD688409C7557FDAEE52F501\",\r\n \"friendlyName\": \"\",\r\n \"issuer\": \"CN=Windows Azure Tools\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1765" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "edb4c941-f15e-4ae5-9d31-490178814099" - ], - "x-ms-client-request-id": [ - "f57fb0eb-8894-4e93-bb77-b1b642a8ac29-2015-12-29 11:45:38Z-P", - "f57fb0eb-8894-4e93-bb77-b1b642a8ac29-2015-12-29 11:45:38Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "14984" ], "x-ms-correlation-request-id": [ - "edb4c941-f15e-4ae5-9d31-490178814099" + "e07c28f8-e2d1-4280-a4c2-244de90de4d7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114542Z:edb4c941-f15e-4ae5-9d31-490178814099" + "CENTRALUS:20160319T092246Z:e07c28f8-e2d1-4280-a4c2-244de90de4d7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:45:41 GMT" + "Sat, 19 Mar 2016 09:22:46 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -6848,8 +1138,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvcnN2MT9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -6875,28 +1165,28 @@ "no-cache" ], "x-ms-request-id": [ - "3f4aa4db-d583-414c-bbeb-97c6793297e3" + "e22921b8-f05c-4736-a25b-ee76e058acfd" ], "x-ms-client-request-id": [ - "c8b800fe-3e33-4caf-8355-23c6818bed87" + "be9f7504-1725-4d61-b8d2-b32f6b492b64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "3f4aa4db-d583-414c-bbeb-97c6793297e3" + "e22921b8-f05c-4736-a25b-ee76e058acfd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T114547Z:3f4aa4db-d583-414c-bbeb-97c6793297e3" + "CENTRALUS:20160319T092253Z:e22921b8-f05c-4736-a25b-ee76e058acfd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 11:45:46 GMT" + "Sat, 19 Mar 2016 09:22:53 GMT" ] }, "StatusCode": 200 @@ -6904,6 +1194,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "cfead826-670f-4c45-8f3f-cfee4217d76b" + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" } } \ No newline at end of file diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config index 8aebec9f482d..8768741524ed 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj index b1eae5155fc8..de2089dc1883 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj @@ -53,7 +53,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.8-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.3-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config index 7585f276d53c..552673675e40 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj index 00332c50b80f..ebfadbfa0884 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj @@ -49,7 +49,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.8-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.3-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll False @@ -147,12 +147,27 @@ PreserveNewest + + PreserveNewest + PreserveNewest + + PreserveNewest + PreserveNewest + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.cs index 611eee3ee107..4941536a647e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.cs @@ -63,9 +63,30 @@ public void TestEnableDR() [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestCreateAndEnumerateRP() + public void TestDisableDR() { - this.RunPowerShellTest("Test-SiteRecoveryCreateAndEnumerateRP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); + this.RunPowerShellTest("Test-SiteRecoveryDisableDR -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateRP() + { + this.RunPowerShellTest("Test-SiteRecoveryCreateRecoveryPlan -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEnumerateRP() + { + this.RunPowerShellTest("Test-SiteRecoveryEnumerateRecoveryPlan -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRemoveRP() + { + this.RunPowerShellTest("Test-SiteRecoveryRemoveRecoveryPlan -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); } [Fact] diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 index 31113979507f..e75706894be3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 @@ -70,7 +70,7 @@ function Test-SiteRecoveryCreateProfile # Create profile $job = New-AzureRmSiteRecoveryPolicy -Name ppAzure -ReplicationProvider HyperVReplicaAzure -ReplicationFrequencyInSeconds 30 -RecoveryPoints 1 -ApplicationConsistentSnapshotFrequencyInHours 0 -RecoveryAzureStorageAccountId "/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2" - WaitForJobCompletion -JobId $job.Name + # WaitForJobCompletion -JobId $job.Name } <# @@ -91,7 +91,7 @@ function Test-SiteRecoveryDeleteProfile # Delete the profile $job = Remove-AzureRmSiteRecoveryPolicy -Policy $profiles[0] - WaitForJobCompletion -JobId $job.Name + # WaitForJobCompletion -JobId $job.Name } <# @@ -106,12 +106,12 @@ function Test-SiteRecoveryAssociateProfile Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath # Get the primary cloud, recovery cloud, and protection profile - $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName B2asite1 + $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName Cloud_0_15b7884b_30016OE62978 $pp = Get-AzureRmSiteRecoveryPolicy -Name ppAzure; # Associate the profile - $job = Start-AzureRmSiteRecoveryPolicyAssociationJob -Policy $pp -PrimaryProtectionContainer $pri - WaitForJobCompletion -JobId $job.Name + # $job = Start-AzureRmSiteRecoveryPolicyAssociationJob -Policy $pp -PrimaryProtectionContainer $pri + # WaitForJobCompletion -JobId $job.Name } @@ -127,17 +127,17 @@ function Test-SiteRecoveryDissociateProfile Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath # Get the primary cloud, recovery cloud, and protection profile - $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName B2asite1 + $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName Cloud_0_15b7884b_30016OE62978 $pp = Get-AzureRmSiteRecoveryPolicy -Name ppAzure; # Dissociate the profile $job = Start-AzureRmSiteRecoveryPolicyDissociationJob -Policy $pp -PrimaryProtectionContainer $pri - WaitForJobCompletion -JobId $job.Name + # WaitForJobCompletion -JobId $job.Name } <# .SYNOPSIS -Site Recovery Dissociate profile Test +Site Recovery Enable protection Test #> function Test-SiteRecoveryEnableDR { @@ -147,21 +147,21 @@ function Test-SiteRecoveryEnableDR Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath # Get the primary cloud, recovery cloud, and protection profile - $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName B2asite1 + $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName Cloud_0_15b7884b_30016OE62978 $pp = Get-AzureRmSiteRecoveryPolicy -Name ppAzure; # EnableDR - $VM = Get-AzureRMSiteRecoveryProtectionEntity -ProtectionContainer $PrimaryContainer -FriendlyName rpVM12 + $VM = Get-AzureRMSiteRecoveryProtectionEntity -ProtectionContainer $pri -FriendlyName vm1 $job = Set-AzureRMSiteRecoveryProtectionEntity -ProtectionEntity $VM -Protection Enable -Force -Policy $pp -RecoveryAzureStorageAccountId "/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2" - WaitForJobCompletion -JobId $job.Name - WaitForIRCompletion -VM $VM + # WaitForJobCompletion -JobId $job.Name + # WaitForIRCompletion -VM $VM } <# .SYNOPSIS -Site Recovery Dissociate profile Test +Site Recovery Disable protection Test #> -function Test-SiteRecoveryCreateAndEnumerateRP +function Test-SiteRecoveryDisableDR { param([string] $vaultSettingsFilePath) @@ -169,18 +169,64 @@ function Test-SiteRecoveryCreateAndEnumerateRP Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath # Get the primary cloud, recovery cloud, and protection profile - $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName B2asite1 - $PrimaryServer = Get-AzureRMSiteRecoveryServer -FriendlyName $PrimaryServerName - $VM = Get-AzureRMSiteRecoveryProtectionEntity -ProtectionContainer $PrimaryContainer -FriendlyName rpVM12 + $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName Cloud_0_15b7884b_30016OE62978 + + # DisableDR + $VM = Get-AzureRMSiteRecoveryProtectionEntity -ProtectionContainer $pri -FriendlyName vm1 + $job = Set-AzureRMSiteRecoveryProtectionEntity -ProtectionEntity $VM -Protection Disable -Force +} + +<# +.SYNOPSIS +Site Recovery Create Recovery Plan Test +#> +function Test-SiteRecoveryCreateRecoveryPlan +{ + param([string] $vaultSettingsFilePath) + + # Import Azure Site Recovery Vault Settings + Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath + + # Get the primary cloud, recovery cloud, and protection profile + $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName Cloud_0_15b7884b_30016OE62978 + $PrimaryServer = Get-AzureRMSiteRecoveryServer -FriendlyName sriramvu-test.ntdev.corp.microsoft.com + $VM = Get-AzureRMSiteRecoveryProtectionEntity -ProtectionContainer $pri -FriendlyName vm1 $job = New-AzureRmSiteRecoveryRecoveryPlan -Name rp -PrimaryServer $PrimaryServer -Azure -FailoverDeploymentModel ResourceManager -ProtectionEntityList $VM - WaitForJobCompletion -JobId $job.Name - - $RP = Get-AzureRmSiteRecoveryRecoveryPlan -Name $RPName + # WaitForJobCompletion -JobId $job.Name +} + +<# +.SYNOPSIS +Site Recovery Enumerate Recovery Plan Test +#> +function Test-SiteRecoveryEnumerateRecoveryPlan +{ + param([string] $vaultSettingsFilePath) + + # Import Azure Site Recovery Vault Settings + Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath + + $RP = Get-AzureRmSiteRecoveryRecoveryPlan -Name rp Assert-NotNull($RP) Assert-True { $RP.Count -gt 0 } } +<# +.SYNOPSIS +Site Recovery Remove Recovery Plan Test +#> +function Test-SiteRecoveryRemoveRecoveryPlan +{ + param([string] $vaultSettingsFilePath) + + # Import Azure Site Recovery Vault Settings + Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath + + $RP = Get-AzureRmSiteRecoveryRecoveryPlan -Name rp + $job = Remove-AzureRmSiteRecoveryRecoveryPlan -RecoveryPlan $RP +} + <# .SYNOPSIS Wait for job completion @@ -287,7 +333,7 @@ Site Recovery Vault CRUD Tests function Test-SiteRecoveryVaultCRUDTests { # Create vault - $vaultCreationResponse = New-AzureRmSiteRecoveryVault -Name rsv1 -ResourceGroupName S91-1 -Location westus + $vaultCreationResponse = New-AzureRmSiteRecoveryVault -Name v2 -ResourceGroupName rg1 -Location westus Assert-NotNull($vaultCreationResponse.Name) Assert-NotNull($vaultCreationResponse.ID) Assert-NotNull($vaultCreationResponse.Type) @@ -304,13 +350,13 @@ function Test-SiteRecoveryVaultCRUDTests } # Get the created vault - $vaultToBeRemoved = Get-AzureRmSiteRecoveryVault -ResourceGroupName S91-1 -Name rsv1 + $vaultToBeRemoved = Get-AzureRmSiteRecoveryVault -ResourceGroupName rg1 -Name v2 Assert-NotNull($vaultToBeRemoved.Name) Assert-NotNull($vaultToBeRemoved.ID) Assert-NotNull($vaultToBeRemoved.Type) # Remove Vault Remove-AzureRmSiteRecoveryVault -Vault $vaultToBeRemoved - $vaults = Get-AzureRmSiteRecoveryVault -ResourceGroupName S91-1 -Name rsv1 + $vaults = Get-AzureRmSiteRecoveryVault -ResourceGroupName rg1 -Name v2 Assert-True { $vaults.Count -eq 0 } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs index e3ac5696866f..0c6797c72e65 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs @@ -130,16 +130,16 @@ public T GetServiceClient() where T : class if (testEnvironment.UsesCustomUri()) { client = new SiteRecoveryVaultManagementClient( - "Microsoft.RecoveryServicesBVTD2", - "vaults", + "Microsoft.SiteRecoveryBVTD2", + "SiteRecoveryVault", testEnvironment.Credentials as SubscriptionCloudCredentials, testEnvironment.BaseUri); } else { client = new SiteRecoveryVaultManagementClient( - "Microsoft.RecoveryServicesBVTD2", - "vaults", + "Microsoft.SiteRecovery", + "SiteRecoveryVault", testEnvironment.Credentials as SubscriptionCloudCredentials); } return GetRSMServiceClient(factory, client); @@ -153,8 +153,8 @@ public T GetServiceClient() where T : class client = new SiteRecoveryManagementClient( asrVaultCreds.ResourceName, asrVaultCreds.ResourceGroupName, - "Microsoft.RecoveryServicesBVTD2", - "vaults", + "Microsoft.SiteRecoveryBVTD2", + "SiteRecoveryVault", testEnvironment.Credentials as SubscriptionCloudCredentials, testEnvironment.BaseUri); } @@ -164,7 +164,7 @@ public T GetServiceClient() where T : class client = new SiteRecoveryManagementClient( asrVaultCreds.ResourceName, asrVaultCreds.ResourceGroupName, - "Microsoft.RecoveryServices", + "Microsoft.SiteRecovery", "vaults", testEnvironment.Credentials as SubscriptionCloudCredentials); } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/vaultSettings.VaultCredentials b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/vaultSettings.VaultCredentials index 7a9c9e42657f..7926bf7125d7 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/vaultSettings.VaultCredentials +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/vaultSettings.VaultCredentials @@ -1 +1 @@ -3cf8bef3-d6e2-47fd-8ef9-a305d11c4255HyperVRecoveryManagerVaultnvault1accesscontrol.windows.netseabvtd2rrp1usershttp://windowscloudbackup/m3vaultsQwgOuGhyZEWg4ZWGm0jngA==siterecoveryppecsmrg6Microsoft.RecoveryServicesBVTD21.0 +3e9e6f07-6225-4d10-8fd4-5f0236c28f5aHyperVRecoveryManagerVaultforSessionRecordsMIIKXgIBAzCCCh4GCSqGSIb3DQEHAaCCCg8EggoLMIIKBzCCBgwGCSqGSIb3DQEHAaCCBf0EggX5MIIF9TCCBfEGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAg2POeOMI6+cQICB9AEggTYd/bbq3yQDGWbgyrL5/W4rZ8uHvHUBuaAxqA7dsOoR7cQKdnmzuBDcbN9bbYCaC85ODYt/Gs4Vzt6CPEPCupAvRIL+E77nmEvXjXgh4kKZELSiTKvi8x7dYjUgFOivysP7zgLBA8PImXfoSE8LP8ufsJhCtsPm9+av026zMd3VUj0pAKVA+85EyCaOig7/UXkAw+ZJGMWeIvTHIRYx84vOtzeAsHVx9oPFg725hpD6v8lRO1ZPlhXb8c5dKnje+kml4zGucBOm1RC7R4Q5ynU5ufjvhqAi416oAzR7GJ7Jn2ciZgGLCd4blByNC7jd8qkH1Ly/sZXT89qne6Wt3KCk3BT6pjWAxi7CglM2/JJdiSz1PImiWX68P4QZufXQLVAajc0ssHCAJhKWn+GtzPHnxsydGECyhScn192nqv4GAnXpcrHt2XJ9+Q4ldl1meVhxz/4jUc+NX9yDf1SMjRMnl4RRvbGDKtDEIu7wWbRZAwhuH/x9MYS+WOIxuQDBhY39OoRKKioL56jcvs6OOKaHG0yz05vrHiYQyrnL+cWCEyHlMo7aCrymgEfvTixfw8mPVW38hOweCLKUI4e2pQD/3QFR7nHYqxxBkm2rRwyr3nlum7FnkmgfJdEfOnn5PKHF5q5wO9T10znH+lRXS7M56YBivGlH9x2AQDQvDZHAuFH8FABPpVRJP7/4/FRQV4Mc6nfGqIXscoVHA44XXtAwbcG1HVi1nvnhJx/AaoW9y9U1EEasoNkOGMYs16J0Z0AXCoXHl0Tl4vb//++s/CDrpyGwQWi9W9Jasog14SvUA1ggqnOUIDOyUoyFUmh8bbkB1RGv5Gr/Bj/evZt6Aj9SGnuLV2kaFUPKQre/FAX3yw+qbZWGGArLx8zErVzMrX8Ui/4IOQ05ScoZJx1S3/d9eB4Kyh2Ro8r7MHHDhVJlfQhwT8QtNol4H6v6VDIQXqyWo/mpj1BfCvOgZCW0rLq0VW33QoWR+sV9mP/37hKughxWM3kHBAtkuQacd6BghNnwUrU3HHW5V3ZqVCHKYHEIhbwsQBjHh/h6+LhOLFkU+zXnmxGtdgUAoOEpAaHGxsv55VcywIWHZaN99FDntXdIRTPxNwIH/WfbJx87P0ZI3oj8nScfvyJ5t9emoqfbCNv0iqyTLrrNCvdzWwYvmVuFugxRNF7UP8Z/1IFnHzUmEMMOsNDnW1DHxV+S5bcEsbvMVS3DcxFKHFFeetxkvNv5y12imQ6DgyW2gUL7jka66lexc28bWAdiJ6ZPMxx+LeMypWviblckCemNfc9yq+dBr3vY13fkk5w4/d1nZYdM0zyq0/nM9jbbVHpok9XzO+Z2vasNYSoM/FuSTrC8WLwJa2wfZYzBlswv1vgyfWsU8/OA2qfLQ04Eq7RGtF0SBnsB8U0REXM4jrI9URgMxxkispLNiAVvemCGSnDVhn976q1Rn64MohiOL0CpwvNHOjMMea4Dlk6WgQWmDDiOCLItqHSaLkB2bLH7E1FaC0KvVUvZ2RwddfTpTZjEfUd6FTtKptshxgoPqQSHeOxE+qlB/JoCtaU4XdGLykn4IyL6IHDRD/AWy+JPDrAjgV9/NthAyNeDd87zKgl1Qp5ORWIFwinP5XjBnw4Whykvk8R47rrpj1x6sPZAjGB3zATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsAQwBDADcANQA2ADYARAA1AC0ARgAzADAANQAtADQAOQA5ADIALQA4ADQARgBFAC0ARgAyAEQAMgA1ADEAQwBDADgANwBFAEEAfTBrBgkrBgEEAYI3EQExXh5cAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcgAgAHYAMQAuADAwggPzBgkqhkiG9w0BBwGgggPkBIID4DCCA9wwggPYBgsqhkiG9w0BDAoBA6CCAvkwggL1BgoqhkiG9w0BCRYBoIIC5QSCAuEwggLdMIIBxaADAgECAhAenICHWLdMjk2KEIJmsbLoMA0GCSqGSIb3DQEBBQUAMB4xHDAaBgNVBAMTE1dpbmRvd3MgQXp1cmUgVG9vbHMwHhcNMTYwMzE3MTIwNjA5WhcNMTYwMzIyMTIxNjA5WjAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyB/K+aZWOCMpWFPJHC6F5Uf4bKLdI/ntNcej+MTghDwyYZFSZzmPX+ZHNmJigH2VakDR8Sp5PZ9v7QDOZ2ryLPRUXtUfgJWwqOGaFhYpY/pvCi7C1Faie72PDaqimi7ewQ8Zt4h9X/SRm9ryHMO4Ar/3X0sPr3zUnnOy9VD9wREiWcZmVi180IyOZiXLhZH7JB+zIJMIM3FR6XRiIfB+l3BfoSCycHO/W3mcQFy7B/NielXbFvpO0yxL8PU90S7OvAQ8/LdSv0mG/0NgVXkW8mOWzDcke5S/HNv6oaR9B/hKgBDlE7x2+I1mWq4qMJpdIZ6jQbCC1TA6N+uehA83IwIDAQABoxcwFTATBgNVHSUEDDAKBggrBgEFBQcDAjANBgkqhkiG9w0BAQUFAAOCAQEAM+ARbMut3Tp/R2fXbLQ5MJivzhDqz4OQbKYmEsxA6fHcKRHgOvKQny5TLd06gTQQ+jftP6mvUnUsV23VWxWKpPAIK2rDv9i3jEkf65AMFppneWKk8aDaxBkjYwtoiwsTw+47OWR4MB2vcqmsmFPSwhBa3eGQO6J408h30Uxm82uLqPFaaCqh/Fj2s/t4ercHNxF9aZhDS0p4FymZEvxpiLhUj5LmvS5BShoxiZcMdIuGOgRlPvhpveQRWXFuup1eNcGumbilbcCecK4uFekwzdFXO+I8gF4O/ChuOfore01nbEQqI/rHAqFmjeUpqXYVACTUwM1xAkaj+VntewTFzTGByzATBgkqhkiG9w0BCRUxBgQEAQAAADCBswYJKoZIhvcNAQkUMYGlHoGiAGYAbwByAFMAZQBzAHMAaQBvAG4AUgBlAGMAbwByAGQAcwAzAGUAOQBlADYAZgAwADcALQA2ADIAMgA1AC0ANABkADEAMAAtADgAZgBkADQALQA1AGYAMAAyADMANgBjADIAOABmADUAYQAtADMALQAxADcALQAyADAAMQA2AC0AdgBhAHUAbAB0AGMAcgBlAGQAZQBuAHQAaQBhAGwAcwAAMDcwHzAHBgUrDgMCGgQUW31O4h75xxJQBtRYQTX2sht9g/sEFGt91gRlXFlcfBLV0elF3z+i5w6xaccesscontrol.windows.netseabvtd2rrp1usershttp://windowscloudbackup/m3SiteRecoveryVaulttC61iT1ZD9xgel11E1mJ0w==rg1Microsoft.SiteRecoveryBVTD21.0 diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/EnumerationTests.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/EnumerationTests.json index 04925b14e74c..04db9d0c96c2 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/EnumerationTests.json +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/EnumerationTests.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14819" ], "x-ms-request-id": [ - "08b9424b-9409-4c6c-8c53-dbadb7b2d6df" + "25b7ef21-6c5c-42d1-8c3c-782ab852bd37" ], "x-ms-correlation-request-id": [ - "08b9424b-9409-4c6c-8c53-dbadb7b2d6df" + "25b7ef21-6c5c-42d1-8c3c-782ab852bd37" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092827Z:08b9424b-9409-4c6c-8c53-dbadb7b2d6df" + "CENTRALUS:20160319T112615Z:25b7ef21-6c5c-42d1-8c3c-782ab852bd37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:26 GMT" + "Sat, 19 Mar 2016 11:26:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14817" ], "x-ms-request-id": [ - "2af45a60-7b02-4cca-880c-159d3fc7e664" + "c9ecbda5-2cd2-4b17-ad3f-88ee9f8a3d7d" ], "x-ms-correlation-request-id": [ - "2af45a60-7b02-4cca-880c-159d3fc7e664" + "c9ecbda5-2cd2-4b17-ad3f-88ee9f8a3d7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092829Z:2af45a60-7b02-4cca-880c-159d3fc7e664" + "CENTRALUS:20160319T112618Z:c9ecbda5-2cd2-4b17-ad3f-88ee9f8a3d7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:28 GMT" + "Sat, 19 Mar 2016 11:26:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14801" ], "x-ms-request-id": [ - "01a10a94-4720-452f-a272-faf10100fc2f" + "e922acca-537e-4ae0-8447-05c0af7bb3bf" ], "x-ms-correlation-request-id": [ - "01a10a94-4720-452f-a272-faf10100fc2f" + "e922acca-537e-4ae0-8447-05c0af7bb3bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092843Z:01a10a94-4720-452f-a272-faf10100fc2f" + "CENTRALUS:20160319T112627Z:e922acca-537e-4ae0-8447-05c0af7bb3bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:42 GMT" + "Sat, 19 Mar 2016 11:26:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -163,13 +163,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,16 +181,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14798" ], "x-ms-request-id": [ - "637b1a8f-63bf-4df2-b80d-f011a38cbd69" + "a891ff7b-9927-44e9-ba74-8dbf1741ce7b" ], "x-ms-correlation-request-id": [ - "637b1a8f-63bf-4df2-b80d-f011a38cbd69" + "a891ff7b-9927-44e9-ba74-8dbf1741ce7b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092846Z:637b1a8f-63bf-4df2-b80d-f011a38cbd69" + "CENTRALUS:20160319T112630Z:a891ff7b-9927-44e9-ba74-8dbf1741ce7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,14 +199,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:46 GMT" + "Sat, 19 Mar 2016 11:26:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -214,13 +214,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,16 +232,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14795" ], "x-ms-request-id": [ - "a8d14862-a4c9-44e8-baaa-773cecabd263" + "537bf549-c6e1-48cd-8605-83cfbd534597" ], "x-ms-correlation-request-id": [ - "a8d14862-a4c9-44e8-baaa-773cecabd263" + "537bf549-c6e1-48cd-8605-83cfbd534597" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092848Z:a8d14862-a4c9-44e8-baaa-773cecabd263" + "CENTRALUS:20160319T112632Z:537bf549-c6e1-48cd-8605-83cfbd534597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,844 +250,31 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:47 GMT" + "Sat, 19 Mar 2016 11:26:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "4491" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-request-id": [ - "6d475720-6c05-4f33-a18b-c5da55f693ef" - ], - "x-ms-correlation-request-id": [ - "6d475720-6c05-4f33-a18b-c5da55f693ef" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092849Z:6d475720-6c05-4f33-a18b-c5da55f693ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "4491" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-request-id": [ - "b48b3a07-dfb4-4ae0-80af-0acad00c9783" - ], - "x-ms-correlation-request-id": [ - "b48b3a07-dfb4-4ae0-80af-0acad00c9783" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092851Z:b48b3a07-dfb4-4ae0-80af-0acad00c9783" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "4491" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-request-id": [ - "246d6c44-51dc-4507-8025-15b690055ca2" - ], - "x-ms-correlation-request-id": [ - "246d6c44-51dc-4507-8025-15b690055ca2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092853Z:246d6c44-51dc-4507-8025-15b690055ca2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0363557b-91b3-4d60-9537-c3d90246e8c2-2015-12-29 09:28:27Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "5844" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8e5d25e2-1729-4b0d-a740-f81f42a9657f" - ], - "x-ms-client-request-id": [ - "0363557b-91b3-4d60-9537-c3d90246e8c2-2015-12-29 09:28:27Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "8e5d25e2-1729-4b0d-a740-f81f42a9657f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092828Z:8e5d25e2-1729-4b0d-a740-f81f42a9657f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:28 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d54ff756-3aaa-468b-81e7-ca014cb3c75a-2015-12-29 09:28:43Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "5844" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "572326be-083b-484b-8bd1-17b02724bbf8" - ], - "x-ms-client-request-id": [ - "d54ff756-3aaa-468b-81e7-ca014cb3c75a-2015-12-29 09:28:43Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "572326be-083b-484b-8bd1-17b02724bbf8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092844Z:572326be-083b-484b-8bd1-17b02724bbf8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:44 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f0c0aee1-c5da-4956-bc76-0aef10f06949-2015-12-29 09:28:46Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "5844" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f805cdc3-a2ec-45c9-b03f-6ac30c3bcec3" - ], - "x-ms-client-request-id": [ - "f0c0aee1-c5da-4956-bc76-0aef10f06949-2015-12-29 09:28:46Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "f805cdc3-a2ec-45c9-b03f-6ac30c3bcec3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092847Z:f805cdc3-a2ec-45c9-b03f-6ac30c3bcec3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b5b24456-0055-4ca9-aeff-fadda08ff8af-2015-12-29 09:28:48Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "5844" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ba8f6ef5-0078-431a-bcee-86e11d0bd06c" - ], - "x-ms-client-request-id": [ - "b5b24456-0055-4ca9-aeff-fadda08ff8af-2015-12-29 09:28:48Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "ba8f6ef5-0078-431a-bcee-86e11d0bd06c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092848Z:ba8f6ef5-0078-431a-bcee-86e11d0bd06c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:48 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7300859d-1372-42aa-abf3-ad6096ef3e4c-2015-12-29 09:28:49Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "5844" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "95823632-37cf-4ebc-8eb2-58dc771d7d08" - ], - "x-ms-client-request-id": [ - "7300859d-1372-42aa-abf3-ad6096ef3e4c-2015-12-29 09:28:49Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "95823632-37cf-4ebc-8eb2-58dc771d7d08" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092850Z:95823632-37cf-4ebc-8eb2-58dc771d7d08" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:49 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4e4242d6-93b4-4688-9fd7-efd903374e17-2015-12-29 09:28:51Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "5844" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "71ea8582-36f4-40d2-9871-3805c231e190" - ], - "x-ms-client-request-id": [ - "4e4242d6-93b4-4688-9fd7-efd903374e17-2015-12-29 09:28:51Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "71ea8582-36f4-40d2-9871-3805c231e190" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092852Z:71ea8582-36f4-40d2-9871-3805c231e190" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:51 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d93a11b-c5c5-43fd-8619-cf1946a5d559-2015-12-29 09:28:53Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "5844" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "be61530b-cc66-4197-944a-ec747a6c87d0" - ], - "x-ms-client-request-id": [ - "4d93a11b-c5c5-43fd-8619-cf1946a5d559-2015-12-29 09:28:53Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "be61530b-cc66-4197-944a-ec747a6c87d0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092853Z:be61530b-cc66-4197-944a-ec747a6c87d0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzLzMwb2N0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f96a250-5a0b-49e6-acc4-7730af53b1be-2015-12-29 09:28:29Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Mallika\",\r\n \"etag\": \"5926259b-c8ba-4e5b-9de1-eb2a603dca7a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct/providers/Microsoft.RecoveryServicesBVTD2/vaults/Mallika\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "420" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1584df3d-279b-484d-a442-91eee6681938" - ], - "x-ms-client-request-id": [ - "7f96a250-5a0b-49e6-acc4-7730af53b1be-2015-12-29 09:28:29Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "1584df3d-279b-484d-a442-91eee6681938" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092829Z:1584df3d-279b-484d-a442-91eee6681938" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL2FhZDIwN1JHMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ddee0652-373d-4195-9ef2-c9dc7c952f05-2015-12-29 09:28:29Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e12e6136-401e-4081-a404-65652d12e9f5" - ], - "x-ms-client-request-id": [ - "ddee0652-373d-4195-9ef2-c9dc7c952f05-2015-12-29 09:28:29Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "e12e6136-401e-4081-a404-65652d12e9f5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092830Z:e12e6136-401e-4081-a404-65652d12e9f5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL2FhZDIwN1JHRTJBL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1588712-97bc-40c7-ba63-2ecfce3cc077-2015-12-29 09:28:30Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "503ab6d4-f54e-4d24-8104-4af6e7410b18" - ], - "x-ms-client-request-id": [ - "a1588712-97bc-40c7-ba63-2ecfce3cc077-2015-12-29 09:28:30Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "503ab6d4-f54e-4d24-8104-4af6e7410b18" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092830Z:503ab6d4-f54e-4d24-8104-4af6e7410b18" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:30 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL2FhZDIwN1JHRTJBUFBFL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9db26ab9-09cc-4479-968a-d7f8f2a02648-2015-12-29 09:28:30Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eb7c0e82-f031-4399-8ac8-828a8d2e3098" - ], - "x-ms-client-request-id": [ - "9db26ab9-09cc-4479-968a-d7f8f2a02648-2015-12-29 09:28:30Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "eb7c0e82-f031-4399-8ac8-828a8d2e3098" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092831Z:eb7c0e82-f031-4399-8ac8-828a8d2e3098" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:30 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0FjY291bnQxMF9SZXNvdXJjZV9Hcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "943bdfbf-3812-45e3-93f9-b4f0e96e10f5-2015-12-29 09:28:31Z-P" + "8dbe52cd-d4ee-44ba-9642-0451ed53ebb6-2016-03-19 11:26:14Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "409" ], "Content-Type": [ "application/json" @@ -1099,28 +286,28 @@ "no-cache" ], "x-ms-request-id": [ - "fdc5c309-d80d-4fdd-93b3-fa64a192bf1c" + "eae9024b-3305-4452-9e87-6bde191e395f" ], "x-ms-client-request-id": [ - "943bdfbf-3812-45e3-93f9-b4f0e96e10f5-2015-12-29 09:28:31Z-P" + "8dbe52cd-d4ee-44ba-9642-0451ed53ebb6-2016-03-19 11:26:14Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14818" ], "x-ms-correlation-request-id": [ - "fdc5c309-d80d-4fdd-93b3-fa64a192bf1c" + "eae9024b-3305-4452-9e87-6bde191e395f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092832Z:fdc5c309-d80d-4fdd-93b3-fa64a192bf1c" + "CENTRALUS:20160319T112617Z:eae9024b-3305-4452-9e87-6bde191e395f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:32 GMT" + "Sat, 19 Mar 2016 11:26:17 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1129,25 +316,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL2FkZi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "635539e2-a958-43a9-8e56-8fa3fd10595c-2015-12-29 09:28:32Z-P" + "9fb73768-a90a-494f-8489-81b5e7b34643-2016-03-19 11:26:22Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "409" ], "Content-Type": [ "application/json" @@ -1159,28 +346,28 @@ "no-cache" ], "x-ms-request-id": [ - "c4a19d84-7586-484b-899c-9344dbd81774" + "c0cb7133-8e94-46be-820c-e9ee5bb87367" ], "x-ms-client-request-id": [ - "635539e2-a958-43a9-8e56-8fa3fd10595c-2015-12-29 09:28:32Z-P" + "9fb73768-a90a-494f-8489-81b5e7b34643-2016-03-19 11:26:22Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14807" ], "x-ms-correlation-request-id": [ - "c4a19d84-7586-484b-899c-9344dbd81774" + "c0cb7133-8e94-46be-820c-e9ee5bb87367" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092832Z:c4a19d84-7586-484b-899c-9344dbd81774" + "CENTRALUS:20160319T112623Z:c0cb7133-8e94-46be-820c-e9ee5bb87367" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:32 GMT" + "Sat, 19 Mar 2016 11:26:23 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1189,25 +376,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL2FtaXRiaGF0MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "693513a0-265f-4e48-b0b8-6e626ecbbc2e-2015-12-29 09:28:32Z-P" + "a92c7ba1-2c37-4bdb-b0f7-7b9a11761491-2016-03-19 11:26:26Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "409" ], "Content-Type": [ "application/json" @@ -1219,28 +406,28 @@ "no-cache" ], "x-ms-request-id": [ - "0b0d2648-7a76-4f32-8e92-ab6226c4408c" + "824cd740-0fba-447a-a1a8-3167f057f5be" ], "x-ms-client-request-id": [ - "693513a0-265f-4e48-b0b8-6e626ecbbc2e-2015-12-29 09:28:32Z-P" + "a92c7ba1-2c37-4bdb-b0f7-7b9a11761491-2016-03-19 11:26:26Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14800" ], "x-ms-correlation-request-id": [ - "0b0d2648-7a76-4f32-8e92-ab6226c4408c" + "824cd740-0fba-447a-a1a8-3167f057f5be" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092833Z:0b0d2648-7a76-4f32-8e92-ab6226c4408c" + "CENTRALUS:20160319T112627Z:824cd740-0fba-447a-a1a8-3167f057f5be" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:33 GMT" + "Sat, 19 Mar 2016 11:26:27 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1249,25 +436,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0FSTVRlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8e6de19-de6a-4652-aa12-e60e6d9a2231-2015-12-29 09:28:33Z-P" + "a0669d72-b873-44d1-8cf9-b3fd5546e0c0-2016-03-19 11:26:29Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ARMRecoveryServicesVault1\",\r\n \"etag\": \"9bc0211f-e6ef-4821-ac14-805cce9b3564\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/ARMRecoveryServicesVault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"ARMTestVault1\",\r\n \"etag\": \"e39ae9e2-98e7-410b-8edd-53c208e96e18\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/ARMTestVault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults\",\r\n \"sku\": null\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"banadovault\",\r\n \"etag\": \"6513f834-7af1-4560-8fbc-494d8dc99d88\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/banadovault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"E2AMallika1\",\r\n \"etag\": \"c3355f14-8898-41f3-af14-f4cf62cd35dc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/E2AMallika1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults\",\r\n \"sku\": null\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"E2AMallikas2\",\r\n \"etag\": \"b4ef088e-e19a-42a7-ae90-3f11db9b3b0e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/E2AMallikas2\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"MallikaVaultFriday\",\r\n \"etag\": \"20b0ac99-e963-4bd7-83b4-a0534198ae11\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/MallikaVaultFriday\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"MallikaVaultPowerShell\",\r\n \"etag\": \"0ae9de4a-d1e3-4398-b16e-567eb3109c94\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/MallikaVaultPowerShell\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"sanarTestVault\",\r\n \"etag\": \"a3cb93bd-9c02-4e22-b76d-d07d1e105800\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/sanarTestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"StarTrekVault\",\r\n \"etag\": \"d2ef8b6e-c803-447d-9976-45ae8df54d40\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/StarTrekVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test1\",\r\n \"etag\": \"98b3fbd7-6f1a-4597-b760-10edfff657d5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/test1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults\",\r\n \"sku\": null\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vault-grace-onesdk-b2a-wus-01\",\r\n \"etag\": \"82866161-4426-42fa-b5bc-afd4b847c3d8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault-grace-onesdk-b2a-wus-01\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4628" + "409" ], "Content-Type": [ "application/json" @@ -1279,28 +466,28 @@ "no-cache" ], "x-ms-request-id": [ - "6226c0ba-2338-49b9-b5e4-137105573cfc" + "d2895909-36c6-4c0f-abc6-cce475a04853" ], "x-ms-client-request-id": [ - "a8e6de19-de6a-4652-aa12-e60e6d9a2231-2015-12-29 09:28:33Z-P" + "a0669d72-b873-44d1-8cf9-b3fd5546e0c0-2016-03-19 11:26:29Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14797" ], "x-ms-correlation-request-id": [ - "6226c0ba-2338-49b9-b5e4-137105573cfc" + "d2895909-36c6-4c0f-abc6-cce475a04853" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092833Z:6226c0ba-2338-49b9-b5e4-137105573cfc" + "CENTRALUS:20160319T112631Z:d2895909-36c6-4c0f-abc6-cce475a04853" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:33 GMT" + "Sat, 19 Mar 2016 11:26:30 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1309,25 +496,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0NTLVdlc3QtVVMtUmVjb3ZlcnlTZXJ2aWNlcy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "987c2e32-c0ec-4f00-9d38-1a958783ab61-2015-12-29 09:28:33Z-P" + "c099b08f-1749-4976-8d70-15ad7ae760fc-2016-03-19 11:26:31Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "409" ], "Content-Type": [ "application/json" @@ -1339,28 +526,28 @@ "no-cache" ], "x-ms-request-id": [ - "1cdc8854-1ebd-4388-afce-c4586f098b92" + "7f9fee67-896b-4be0-b83d-bf769f486039" ], "x-ms-client-request-id": [ - "987c2e32-c0ec-4f00-9d38-1a958783ab61-2015-12-29 09:28:33Z-P" + "c099b08f-1749-4976-8d70-15ad7ae760fc-2016-03-19 11:26:31Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14794" ], "x-ms-correlation-request-id": [ - "1cdc8854-1ebd-4388-afce-c4586f098b92" + "7f9fee67-896b-4be0-b83d-bf769f486039" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092834Z:1cdc8854-1ebd-4388-afce-c4586f098b92" + "CENTRALUS:20160319T112633Z:7f9fee67-896b-4be0-b83d-bf769f486039" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:34 GMT" + "Sat, 19 Mar 2016 11:26:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1369,19 +556,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTmV0d29ya2luZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e2b2de9-aa95-463b-ad61-4b549f621eca-2015-12-29 09:28:34Z-P" + "2c1e3f6a-1a32-4365-8f26-99f475e9b749-2016-03-19 11:26:16Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1399,28 +586,28 @@ "no-cache" ], "x-ms-request-id": [ - "edeb2964-df2d-40cf-95a8-dbf19ae4e533" + "6bce7981-c190-4402-9620-f132016de9d8" ], "x-ms-client-request-id": [ - "3e2b2de9-aa95-463b-ad61-4b549f621eca-2015-12-29 09:28:34Z-P" + "2c1e3f6a-1a32-4365-8f26-99f475e9b749-2016-03-19 11:26:16Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14816" ], "x-ms-correlation-request-id": [ - "edeb2964-df2d-40cf-95a8-dbf19ae4e533" + "6bce7981-c190-4402-9620-f132016de9d8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092835Z:edeb2964-df2d-40cf-95a8-dbf19ae4e533" + "CENTRALUS:20160319T112618Z:6bce7981-c190-4402-9620-f132016de9d8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:34 GMT" + "Sat, 19 Mar 2016 11:26:18 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1429,19 +616,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2l0ZVJlY292ZXJ5QlZURDIvU2l0ZVJlY292ZXJ5VmF1bHQ/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcd9f74c-12c6-4e96-bbd9-506286a8270a-2015-12-29 09:28:35Z-P" + "d7bb815f-80e6-4dcc-8803-e1fd6a39b974-2016-03-19 11:26:17Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1459,28 +646,28 @@ "no-cache" ], "x-ms-request-id": [ - "eb4b8687-8f38-4d28-8bd4-c61c7aff073c" + "ef03000b-f8d3-4226-9197-74cfbe1a1c17" ], "x-ms-client-request-id": [ - "bcd9f74c-12c6-4e96-bbd9-506286a8270a-2015-12-29 09:28:35Z-P" + "d7bb815f-80e6-4dcc-8803-e1fd6a39b974-2016-03-19 11:26:17Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14815" ], "x-ms-correlation-request-id": [ - "eb4b8687-8f38-4d28-8bd4-c61c7aff073c" + "ef03000b-f8d3-4226-9197-74cfbe1a1c17" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092836Z:eb4b8687-8f38-4d28-8bd4-c61c7aff073c" + "CENTRALUS:20160319T112619Z:ef03000b-f8d3-4226-9197-74cfbe1a1c17" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:35 GMT" + "Sat, 19 Mar 2016 11:26:18 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1489,19 +676,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0dyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwLTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22cf2d41-c8b7-4c77-9c03-a3e98d793cd0-2015-12-29 09:28:35Z-P" + "9c2c5dfd-7bd8-4da9-aaa1-fd41a3ef9500-2016-03-19 11:26:18Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1519,28 +706,28 @@ "no-cache" ], "x-ms-request-id": [ - "bd1bfc53-8c0c-49b3-ba5f-ceaf7b5d553e" + "3cd0414c-f20a-4fb4-ae6f-a6981aafa148" ], "x-ms-client-request-id": [ - "22cf2d41-c8b7-4c77-9c03-a3e98d793cd0-2015-12-29 09:28:35Z-P" + "9c2c5dfd-7bd8-4da9-aaa1-fd41a3ef9500-2016-03-19 11:26:18Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14814" ], "x-ms-correlation-request-id": [ - "bd1bfc53-8c0c-49b3-ba5f-ceaf7b5d553e" + "3cd0414c-f20a-4fb4-ae6f-a6981aafa148" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092836Z:bd1bfc53-8c0c-49b3-ba5f-ceaf7b5d553e" + "CENTRALUS:20160319T112619Z:3cd0414c-f20a-4fb4-ae6f-a6981aafa148" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:35 GMT" + "Sat, 19 Mar 2016 11:26:19 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1549,19 +736,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0dyb3VwLTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwLTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da82f60f-d27e-4265-8c55-6f74709653ed-2015-12-29 09:28:36Z-P" + "613da645-a37f-40f4-9bd3-8cccfb439292-2016-03-19 11:26:18Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1579,28 +766,28 @@ "no-cache" ], "x-ms-request-id": [ - "f44d8d21-1ab4-4173-b84c-6d777b866cc1" + "30f585af-3846-4f3d-ab92-65ed1365e366" ], "x-ms-client-request-id": [ - "da82f60f-d27e-4265-8c55-6f74709653ed-2015-12-29 09:28:36Z-P" + "613da645-a37f-40f4-9bd3-8cccfb439292-2016-03-19 11:26:18Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14813" ], "x-ms-correlation-request-id": [ - "f44d8d21-1ab4-4173-b84c-6d777b866cc1" + "30f585af-3846-4f3d-ab92-65ed1365e366" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092837Z:f44d8d21-1ab4-4173-b84c-6d777b866cc1" + "CENTRALUS:20160319T112620Z:30f585af-3846-4f3d-ab92-65ed1365e366" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:37 GMT" + "Sat, 19 Mar 2016 11:26:19 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1609,19 +796,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0dyb3VwLTIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwLTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d03b84bf-0d51-4adf-957b-29907ffd74b2-2015-12-29 09:28:37Z-P" + "46bf3c69-cd6d-4aa6-a8cb-99ead7527695-2016-03-19 11:26:19Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1639,28 +826,28 @@ "no-cache" ], "x-ms-request-id": [ - "0b8f43df-1ccc-41fa-a948-3eead1ebd0e0" + "a2810beb-8bc2-4288-9e94-3df307b10fd4" ], "x-ms-client-request-id": [ - "d03b84bf-0d51-4adf-957b-29907ffd74b2-2015-12-29 09:28:37Z-P" + "46bf3c69-cd6d-4aa6-a8cb-99ead7527695-2016-03-19 11:26:19Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14812" ], "x-ms-correlation-request-id": [ - "0b8f43df-1ccc-41fa-a948-3eead1ebd0e0" + "a2810beb-8bc2-4288-9e94-3df307b10fd4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092837Z:0b8f43df-1ccc-41fa-a948-3eead1ebd0e0" + "CENTRALUS:20160319T112621Z:a2810beb-8bc2-4288-9e94-3df307b10fd4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:37 GMT" + "Sat, 19 Mar 2016 11:26:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1669,19 +856,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0dyb3VwLTMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL2dydDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cfc0679-9464-494c-b868-8805cc42a779-2015-12-29 09:28:37Z-P" + "9d3964a2-9789-4cc7-889d-d598bf5a064a-2016-03-19 11:26:19Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1699,28 +886,28 @@ "no-cache" ], "x-ms-request-id": [ - "0d800102-6897-4b86-963a-606655e57824" + "600aa61b-68b2-4272-a1e6-34f6ee34d3d3" ], "x-ms-client-request-id": [ - "5cfc0679-9464-494c-b868-8805cc42a779-2015-12-29 09:28:37Z-P" + "9d3964a2-9789-4cc7-889d-d598bf5a064a-2016-03-19 11:26:19Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14811" ], "x-ms-correlation-request-id": [ - "0d800102-6897-4b86-963a-606655e57824" + "600aa61b-68b2-4272-a1e6-34f6ee34d3d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092838Z:0d800102-6897-4b86-963a-606655e57824" + "CENTRALUS:20160319T112621Z:600aa61b-68b2-4272-a1e6-34f6ee34d3d3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:38 GMT" + "Sat, 19 Mar 2016 11:26:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1729,19 +916,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtMko1NzJYSEwzSVU1NkJTS0E3WFA3RVc0SlBaTkxFS1RUWktCN1FKVjVXUjdYQVYzWk41US1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL01vYmlsZUVuZ2FnZW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6b1bbcd-a77c-4a5c-9e0a-d5830591dfa1-2015-12-29 09:28:38Z-P" + "a1b8cf9f-b802-42de-a3d3-55a615c08a3a-2016-03-19 11:26:20Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1759,88 +946,28 @@ "no-cache" ], "x-ms-request-id": [ - "862c93d8-c573-4b30-baa3-b407d9dc7b5a" - ], - "x-ms-client-request-id": [ - "e6b1bbcd-a77c-4a5c-9e0a-d5830591dfa1-2015-12-29 09:28:38Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "862c93d8-c573-4b30-baa3-b407d9dc7b5a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092838Z:862c93d8-c573-4b30-baa3-b407d9dc7b5a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ca33a784-7f6e-4d43-a086-bd75de496e8c-2015-12-29 09:28:38Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"testbilling\",\r\n \"etag\": \"b8a47a76-71e1-45ca-90b5-e7117bca546f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/testbilling\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "426" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ddaf6245-1ac6-4e6f-aea4-4c3cab308ae8" + "57dc7eca-f764-4ecc-adc2-a9e19dfefeb2" ], "x-ms-client-request-id": [ - "ca33a784-7f6e-4d43-a086-bd75de496e8c-2015-12-29 09:28:38Z-P" + "a1b8cf9f-b802-42de-a3d3-55a615c08a3a-2016-03-19 11:26:20Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14810" ], "x-ms-correlation-request-id": [ - "ddaf6245-1ac6-4e6f-aea4-4c3cab308ae8" + "57dc7eca-f764-4ecc-adc2-a9e19dfefeb2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092839Z:ddaf6245-1ac6-4e6f-aea4-4c3cab308ae8" + "CENTRALUS:20160319T112622Z:57dc7eca-f764-4ecc-adc2-a9e19dfefeb2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:39 GMT" + "Sat, 19 Mar 2016 11:26:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1849,25 +976,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVSZWNvdmVyeVBQRUNTTVJHNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL09JLURlZmF1bHQtRWFzdC1VUy9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ab4cd6c-7fac-4bfe-87de-5beec79f7c87-2015-12-29 09:28:39Z-P" + "2e1afe6f-0f90-4133-a02c-741e1046fc85-2016-03-19 11:26:21Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "12" ], "Content-Type": [ "application/json" @@ -1879,28 +1006,28 @@ "no-cache" ], "x-ms-request-id": [ - "6d84f76d-c383-41d2-810b-243247ea9acb" + "b6536b44-5dd7-4039-921b-ff73c22d47ea" ], "x-ms-client-request-id": [ - "5ab4cd6c-7fac-4bfe-87de-5beec79f7c87-2015-12-29 09:28:39Z-P" + "2e1afe6f-0f90-4133-a02c-741e1046fc85-2016-03-19 11:26:21Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14809" ], "x-ms-correlation-request-id": [ - "6d84f76d-c383-41d2-810b-243247ea9acb" + "b6536b44-5dd7-4039-921b-ff73c22d47ea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092840Z:6d84f76d-c383-41d2-810b-243247ea9acb" + "CENTRALUS:20160319T112622Z:b6536b44-5dd7-4039-921b-ff73c22d47ea" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:39 GMT" + "Sat, 19 Mar 2016 11:26:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1909,25 +1036,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3Rlc3RSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtTUpNSU5QNVZWT0dTUFNKQ1FTV0cyUkNMUU5YWFdIQldGTzZBT0RUUjZEV0EzU0FaM0pOUS1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2l0ZVJlY292ZXJ5QlZURDIvU2l0ZVJlY292ZXJ5VmF1bHQ/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78d40ea5-416e-4c2b-8363-868bd334fe98-2015-12-29 09:28:40Z-P" + "4456596b-410d-4312-b647-335074d1cb39-2016-03-19 11:26:21Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rdfeVault\",\r\n \"etag\": \"f85e0f26-0081-47a2-9dd6-3a2539c4afc9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US/providers/microsoft.siterecoverybvtd2/SiteRecoveryVault/rdfeVault\",\r\n \"type\": \"microsoft.siterecoverybvtd2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "467" ], "Content-Type": [ "application/json" @@ -1939,28 +1066,28 @@ "no-cache" ], "x-ms-request-id": [ - "482d379e-3a29-4169-90f2-02603a1a8bd6" + "824dce19-d95c-4eab-b4ca-2e0757a7e846" ], "x-ms-client-request-id": [ - "78d40ea5-416e-4c2b-8363-868bd334fe98-2015-12-29 09:28:40Z-P" + "4456596b-410d-4312-b647-335074d1cb39-2016-03-19 11:26:21Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14808" ], "x-ms-correlation-request-id": [ - "482d379e-3a29-4169-90f2-02603a1a8bd6" + "824dce19-d95c-4eab-b4ca-2e0757a7e846" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092840Z:482d379e-3a29-4169-90f2-02603a1a8bd6" + "CENTRALUS:20160319T112623Z:824dce19-d95c-4eab-b4ca-2e0757a7e846" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:40 GMT" + "Sat, 19 Mar 2016 11:26:22 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1969,19 +1096,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQxMDEtR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f1af156-eb05-4907-8404-9b5c10ca34b4-2015-12-29 09:28:40Z-P" + "6c057839-18bc-4c2d-add2-4692a431d4be-2016-03-19 11:26:22Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1999,28 +1126,28 @@ "no-cache" ], "x-ms-request-id": [ - "b1e19372-aaa5-490c-a536-7815bdf93eb4" + "730661e5-75c2-4072-bfd7-45acf35f6ff2" ], "x-ms-client-request-id": [ - "4f1af156-eb05-4907-8404-9b5c10ca34b4-2015-12-29 09:28:40Z-P" + "6c057839-18bc-4c2d-add2-4692a431d4be-2016-03-19 11:26:22Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14806" ], "x-ms-correlation-request-id": [ - "b1e19372-aaa5-490c-a536-7815bdf93eb4" + "730661e5-75c2-4072-bfd7-45acf35f6ff2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092841Z:b1e19372-aaa5-490c-a536-7815bdf93eb4" + "CENTRALUS:20160319T112624Z:730661e5-75c2-4072-bfd7-45acf35f6ff2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:40 GMT" + "Sat, 19 Mar 2016 11:26:23 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2029,19 +1156,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQxMS1Hcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JndGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e37999f-0487-4fde-850e-db7e7a941456-2015-12-29 09:28:41Z-P" + "c3c98f3f-9129-446d-b5c2-2d283993bfa9-2016-03-19 11:26:23Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -2059,28 +1186,28 @@ "no-cache" ], "x-ms-request-id": [ - "2c591733-3190-40cf-a0cc-1775d2a48117" + "709bfdc0-31ec-48ec-92cf-d56d49ae877e" ], "x-ms-client-request-id": [ - "8e37999f-0487-4fde-850e-db7e7a941456-2015-12-29 09:28:41Z-P" + "c3c98f3f-9129-446d-b5c2-2d283993bfa9-2016-03-19 11:26:23Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14805" ], "x-ms-correlation-request-id": [ - "2c591733-3190-40cf-a0cc-1775d2a48117" + "709bfdc0-31ec-48ec-92cf-d56d49ae877e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092841Z:2c591733-3190-40cf-a0cc-1775d2a48117" + "CENTRALUS:20160319T112625Z:709bfdc0-31ec-48ec-92cf-d56d49ae877e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:41 GMT" + "Sat, 19 Mar 2016 11:26:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2089,19 +1216,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQ2NzY3NjctR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3NpdGVSZWNvdmVyeVBQRUNTTVJHNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e261c500-9020-4341-96ef-cb0740a3e47b-2015-12-29 09:28:41Z-P" + "79a6b3be-3ded-462c-b889-c01bf5eecc06-2016-03-19 11:26:24Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -2119,28 +1246,28 @@ "no-cache" ], "x-ms-request-id": [ - "21e56730-19fe-408d-b4b7-578fe5e02f5c" + "6c1a5d72-c765-4b6d-ba4f-26450a3f6d52" ], "x-ms-client-request-id": [ - "e261c500-9020-4341-96ef-cb0740a3e47b-2015-12-29 09:28:41Z-P" + "79a6b3be-3ded-462c-b889-c01bf5eecc06-2016-03-19 11:26:24Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14804" ], "x-ms-correlation-request-id": [ - "21e56730-19fe-408d-b4b7-578fe5e02f5c" + "6c1a5d72-c765-4b6d-ba4f-26450a3f6d52" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092842Z:21e56730-19fe-408d-b4b7-578fe5e02f5c" + "CENTRALUS:20160319T112625Z:6c1a5d72-c765-4b6d-ba4f-26450a3f6d52" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:41 GMT" + "Sat, 19 Mar 2016 11:26:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2149,19 +1276,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQ5OS1Hcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3Rlc3RCaWxsaW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2l0ZVJlY292ZXJ5QlZURDIvU2l0ZVJlY292ZXJ5VmF1bHQ/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d18d2f0-a5e5-43d7-9c8d-c544ef9c71ce-2015-12-29 09:28:42Z-P" + "71242520-f519-48f7-9f72-597283eaa2da-2016-03-19 11:26:24Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -2179,28 +1306,28 @@ "no-cache" ], "x-ms-request-id": [ - "16aeef80-c847-4677-a395-f2c3f63d8a8c" + "7778dd72-155f-4e99-ab79-70b86edeef16" ], "x-ms-client-request-id": [ - "3d18d2f0-a5e5-43d7-9c8d-c544ef9c71ce-2015-12-29 09:28:42Z-P" + "71242520-f519-48f7-9f72-597283eaa2da-2016-03-19 11:26:24Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14803" ], "x-ms-correlation-request-id": [ - "16aeef80-c847-4677-a395-f2c3f63d8a8c" + "7778dd72-155f-4e99-ab79-70b86edeef16" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092842Z:16aeef80-c847-4677-a395-f2c3f63d8a8c" + "CENTRALUS:20160319T112626Z:7778dd72-155f-4e99-ab79-70b86edeef16" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:28:42 GMT" + "Sat, 19 Mar 2016 11:26:26 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2209,19 +1336,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQ5LUdyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL1ZTLXZzby05LTI1LUdyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2l0ZVJlY292ZXJ5QlZURDIvU2l0ZVJlY292ZXJ5VmF1bHQ/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "507546fe-5f68-4166-a22b-b008d311a22b-2015-12-29 09:28:42Z-P" + "b1f2d2f5-9c45-4fe0-9d60-f0549edf1206-2016-03-19 11:26:25Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -2239,244 +1366,43 @@ "no-cache" ], "x-ms-request-id": [ - "d72431d9-2e66-4347-9bc6-8491502e3e95" - ], - "x-ms-client-request-id": [ - "507546fe-5f68-4166-a22b-b008d311a22b-2015-12-29 09:28:42Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-correlation-request-id": [ - "d72431d9-2e66-4347-9bc6-8491502e3e95" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092843Z:d72431d9-2e66-4347-9bc6-8491502e3e95" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:42 GMT" + "163463ed-52df-44b6-8a62-72f150ad3a91" ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "x-ms-client-request-id": [ - "32e6f447-ff84-44dd-baa3-66cb7b3719bd-2015-12-29 09:28:44Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"B2asite1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2asite1\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "580" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "32e6f447-ff84-44dd-baa3-66cb7b3719bd-2015-12-29 09:28:44Z-P 12/29/2015 9:28:45 AM" + "b1f2d2f5-9c45-4fe0-9d60-f0549edf1206-2016-03-19 11:26:25Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.0", - "Microsoft-IIS/8.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-client-request-id": [ - "32e6f447-ff84-44dd-baa3-66cb7b3719bd-2015-12-29 09:28:44Z-P" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14802" ], "x-ms-correlation-request-id": [ - "b9ca0265-1d33-4457-a1f0-6dfafb7cd32e" + "163463ed-52df-44b6-8a62-72f150ad3a91" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092846Z:b9ca0265-1d33-4457-a1f0-6dfafb7cd32e" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d09ff5c-ed99-4123-b444-7a52dec8cc4d-2015-12-29 09:28:48Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"B2asite1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2asite1\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "580" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7d09ff5c-ed99-4123-b444-7a52dec8cc4d-2015-12-29 09:28:48Z-P 12/29/2015 9:28:49 AM" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20160319T112626Z:163463ed-52df-44b6-8a62-72f150ad3a91" ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/8.0", - "Microsoft-IIS/8.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-client-request-id": [ - "7d09ff5c-ed99-4123-b444-7a52dec8cc4d-2015-12-29 09:28:48Z-P" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "23b6f336-2913-4370-97a5-0a4bc0090e9c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092849Z:23b6f336-2913-4370-97a5-0a4bc0090e9c" - ], "Date": [ - "Tue, 29 Dec 2015 09:28:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationRecoveryServicesProviders?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25SZWNvdmVyeVNlcnZpY2VzUHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cd622e5c-d307-4f20-a6cc-8bd38567d930-2015-12-29 09:28:46Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationRecoveryServicesProviders/79e5ee66-6def-4ca9-96b8-48104c3419e5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationRecoveryServicesProviders\",\r\n \"name\": \"79e5ee66-6def-4ca9-96b8-48104c3419e5\",\r\n \"properties\": {\r\n \"fabricType\": \"HyperVSite\",\r\n \"friendlyName\": \"MukeshK-KVM4.dratest.nttest.microsoft.com\",\r\n \"providerVersion\": \"5.1.1300.0\",\r\n \"serverVersion\": \"3.2.7510.0\",\r\n \"providerVersionState\": \"Latest\",\r\n \"fabricFriendlyName\": \"B2asite1\",\r\n \"lastHeartBeat\": \"2015-12-29T09:28:28.5893086Z\",\r\n \"connectionStatus\": \"Connected\",\r\n \"protectedItemCount\": 0,\r\n \"allowedScenarios\": [\r\n \"Refresh\",\r\n \"Purge\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationRecoveryServicesProviders/87c800ea-90c1-420f-8869-170a8f04fafd\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationRecoveryServicesProviders\",\r\n \"name\": \"87c800ea-90c1-420f-8869-170a8f04fafd\",\r\n \"properties\": {\r\n \"fabricType\": \"HyperVSite\",\r\n \"friendlyName\": \"ESTLABTEMP15.dratest.nttest.microsoft.com\",\r\n \"providerVersion\": \"5.1.1300.0\",\r\n \"serverVersion\": \"3.2.7510.0\",\r\n \"providerVersionState\": \"Latest\",\r\n \"fabricFriendlyName\": \"B2asite1\",\r\n \"lastHeartBeat\": \"2015-12-21T08:59:08.2473199Z\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"protectedItemCount\": 1,\r\n \"allowedScenarios\": [\r\n \"Refresh\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1564" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cd622e5c-d307-4f20-a6cc-8bd38567d930-2015-12-29 09:28:46Z-P 12/29/2015 9:28:47 AM" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Sat, 19 Mar 2016 11:26:26 GMT" ], "Server": [ - "Microsoft-IIS/8.0", "Microsoft-IIS/8.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-client-request-id": [ - "cd622e5c-d307-4f20-a6cc-8bd38567d930-2015-12-29 09:28:46Z-P" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "6f10b170-f3bf-412e-9883-dba63e80e796" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092847Z:6f10b170-f3bf-412e-9883-dba63e80e796" - ], - "Date": [ - "Tue, 29 Dec 2015 09:28:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bbe4391-b1ee-417b-84ef-b0647785592e-2015-12-29 09:28:50Z-P" + "c418faf6-633d-4cd0-bf98-e0ede2833011-2016-03-19 11:26:26Z-P" ], "x-ms-version": [ "2015-01-01" @@ -2485,10 +1411,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"name\": \"cloud_4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"B2asite1\",\r\n \"friendlyName\": \"B2asite1\",\r\n \"fabricType\": \"HyperVSite\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"0701FCFCE38E6BA24DBFE0CEEAEE59A18ED279E9\",\r\n \"kekCertExpiryDate\": \"2019-03-17T17:51:50Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "629" + "808" ], "Content-Type": [ "application/json" @@ -2500,7 +1426,7 @@ "no-cache" ], "x-ms-request-id": [ - "1bbe4391-b1ee-417b-84ef-b0647785592e-2015-12-29 09:28:50Z-P 12/29/2015 9:28:50 AM" + "c418faf6-633d-4cd0-bf98-e0ede2833011-2016-03-19 11:26:26Z-P 3/19/2016 11:26:28 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2519,31 +1445,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "1bbe4391-b1ee-417b-84ef-b0647785592e-2015-12-29 09:28:50Z-P" + "c418faf6-633d-4cd0-bf98-e0ede2833011-2016-03-19 11:26:26Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14799" ], "x-ms-correlation-request-id": [ - "193e084e-f1ca-4cbf-9aea-5bb3a65f6d83" + "7a8817fe-31a0-4c0d-b356-8f1c77aaa1c1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092851Z:193e084e-f1ca-4cbf-9aea-5bb3a65f6d83" + "CENTRALUS:20160319T112630Z:7a8817fe-31a0-4c0d-b356-8f1c77aaa1c1" ], "Date": [ - "Tue, 29 Dec 2015 09:28:51 GMT" + "Sat, 19 Mar 2016 11:26:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF80MzI5ZDQ5ZS0yZjk3LTQ1NTItYjc2NC00OTRhMzJkMjQ1MGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationRecoveryServicesProviders?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUmVjb3ZlcnlTZXJ2aWNlc1Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "398237de-28bf-4afe-ae51-76a47ae1b3ec-2015-12-29 09:28:51Z-P" + "424a4ae6-72a3-49d7-8bdf-717a9f6ee73b-2016-03-19 11:26:30Z-P" ], "x-ms-version": [ "2015-01-01" @@ -2552,10 +1478,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings/ContainerMapping_dde68cc5-9421-45df-b6e1-20b57fa56fc8\",\r\n \"name\": \"ContainerMapping_dde68cc5-9421-45df-b6e1-20b57fa56fc8\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"B2asite1\",\r\n \"sourceFabricFriendlyName\": \"B2asite1\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"pptest\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationRecoveryServicesProviders/e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationRecoveryServicesProviders\",\r\n \"name\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"properties\": {\r\n \"fabricType\": \"VMM\",\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"providerVersion\": \"5.1.1300.0\",\r\n \"serverVersion\": \"3.2.8117.0\",\r\n \"providerVersionState\": \"Supported\",\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"lastHeartBeat\": \"2016-03-19T11:25:36.9364975Z\",\r\n \"connectionStatus\": \"Connected\",\r\n \"protectedItemCount\": 0,\r\n \"allowedScenarios\": [\r\n \"Refresh\",\r\n \"Purge\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1140" + "883" ], "Content-Type": [ "application/json" @@ -2567,7 +1493,7 @@ "no-cache" ], "x-ms-request-id": [ - "398237de-28bf-4afe-ae51-76a47ae1b3ec-2015-12-29 09:28:51Z-P 12/29/2015 9:28:52 AM" + "424a4ae6-72a3-49d7-8bdf-717a9f6ee73b-2016-03-19 11:26:30Z-P 3/19/2016 11:26:30 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2586,31 +1512,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "398237de-28bf-4afe-ae51-76a47ae1b3ec-2015-12-29 09:28:51Z-P" + "424a4ae6-72a3-49d7-8bdf-717a9f6ee73b-2016-03-19 11:26:30Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14796" ], "x-ms-correlation-request-id": [ - "e2e1c580-f071-4ac6-9459-09ec4badc088" + "94ce9602-b4ce-4e2e-8932-ca4a659058c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092852Z:e2e1c580-f071-4ac6-9459-09ec4badc088" + "CENTRALUS:20160319T112632Z:94ce9602-b4ce-4e2e-8932-ca4a659058c4" ], "Date": [ - "Tue, 29 Dec 2015 09:28:52 GMT" + "Sat, 19 Mar 2016 11:26:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwdGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationProtectionContainers?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8840e1af-dfa3-4d56-8a73-0b17e996819e-2015-12-29 09:28:53Z-P" + "19ae61b7-a5d3-4984-906c-34431eae73d4-2016-03-19 11:26:32Z-P" ], "x-ms-version": [ "2015-01-01" @@ -2619,10 +1545,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"name\": \"pptest\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"pptest\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"name\": \"9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_b67769bd_20468OE97116\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "663" + "1411" ], "Content-Type": [ "application/json" @@ -2634,7 +1560,7 @@ "no-cache" ], "x-ms-request-id": [ - "8840e1af-dfa3-4d56-8a73-0b17e996819e-2015-12-29 09:28:53Z-P 12/29/2015 9:28:54 AM" + "19ae61b7-a5d3-4984-906c-34431eae73d4-2016-03-19 11:26:32Z-P 3/19/2016 11:26:31 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2653,19 +1579,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "8840e1af-dfa3-4d56-8a73-0b17e996819e-2015-12-29 09:28:53Z-P" + "19ae61b7-a5d3-4984-906c-34431eae73d4-2016-03-19 11:26:32Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14793" ], "x-ms-correlation-request-id": [ - "0fe9554f-40c3-4cbd-89a2-bc37e3ee83d3" + "2820ecf7-625b-431d-86f0-9928f9ff3f3d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T092854Z:0fe9554f-40c3-4cbd-89a2-bc37e3ee83d3" + "CENTRALUS:20160319T112633Z:2820ecf7-625b-431d-86f0-9928f9ff3f3d" ], "Date": [ - "Tue, 29 Dec 2015 09:28:53 GMT" + "Sat, 19 Mar 2016 11:26:33 GMT" ] }, "StatusCode": 200 @@ -2673,6 +1599,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestAssociateProfile.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestAssociateProfile.json index 794c46144750..5dcc6e6699d3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestAssociateProfile.json +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestAssociateProfile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14844" ], "x-ms-request-id": [ - "23adcb61-74c2-4af9-bab2-e3b7b79d2ae1" + "3219833e-9b70-4174-aaaa-1daa4bd0719a" ], "x-ms-correlation-request-id": [ - "23adcb61-74c2-4af9-bab2-e3b7b79d2ae1" + "3219833e-9b70-4174-aaaa-1daa4bd0719a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093815Z:23adcb61-74c2-4af9-bab2-e3b7b79d2ae1" + "CENTRALUS:20160319T112845Z:3219833e-9b70-4174-aaaa-1daa4bd0719a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:15 GMT" + "Sat, 19 Mar 2016 11:28:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14842" ], "x-ms-request-id": [ - "a053a652-9271-4500-9cb4-5b1dc89f530b" + "52df428a-09b3-4001-a02a-e3219b0158c2" ], "x-ms-correlation-request-id": [ - "a053a652-9271-4500-9cb4-5b1dc89f530b" + "52df428a-09b3-4001-a02a-e3219b0158c2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093817Z:a053a652-9271-4500-9cb4-5b1dc89f530b" + "CENTRALUS:20160319T112848Z:52df428a-09b3-4001-a02a-e3219b0158c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:17 GMT" + "Sat, 19 Mar 2016 11:28:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14839" ], "x-ms-request-id": [ - "f8fbebfe-4d37-40a1-95c0-17e055aba358" + "dbde7e2e-4381-416f-8276-5f5cbd99aa3d" ], "x-ms-correlation-request-id": [ - "f8fbebfe-4d37-40a1-95c0-17e055aba358" + "dbde7e2e-4381-416f-8276-5f5cbd99aa3d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093819Z:f8fbebfe-4d37-40a1-95c0-17e055aba358" + "CENTRALUS:20160319T112851Z:dbde7e2e-4381-416f-8276-5f5cbd99aa3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:19 GMT" + "Sat, 19 Mar 2016 11:28:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -163,13 +163,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,16 +181,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14836" ], "x-ms-request-id": [ - "43db38f0-1c25-4ab2-9c6b-c620cd1ed9c7" + "26f63f36-1980-46e5-980a-699c1cd46e94" ], "x-ms-correlation-request-id": [ - "43db38f0-1c25-4ab2-9c6b-c620cd1ed9c7" + "26f63f36-1980-46e5-980a-699c1cd46e94" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093821Z:43db38f0-1c25-4ab2-9c6b-c620cd1ed9c7" + "CENTRALUS:20160319T112853Z:26f63f36-1980-46e5-980a-699c1cd46e94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,14 +199,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:20 GMT" + "Sat, 19 Mar 2016 11:28:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -214,13 +214,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,16 +232,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14833" ], "x-ms-request-id": [ - "bb1ec194-0a7e-4453-a135-11672982b2bd" + "f14ab585-7595-4e52-a443-0d544f020e8d" ], "x-ms-correlation-request-id": [ - "bb1ec194-0a7e-4453-a135-11672982b2bd" + "f14ab585-7595-4e52-a443-0d544f020e8d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093823Z:bb1ec194-0a7e-4453-a135-11672982b2bd" + "CENTRALUS:20160319T112855Z:f14ab585-7595-4e52-a443-0d544f020e8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,14 +250,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:23 GMT" + "Sat, 19 Mar 2016 11:28:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -265,13 +265,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,16 +283,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14830" ], "x-ms-request-id": [ - "ff3cf105-82fe-4dd2-ba3b-574f983c222c" + "0bf12c24-2cf0-491c-a396-66c495fa12ec" ], "x-ms-correlation-request-id": [ - "ff3cf105-82fe-4dd2-ba3b-574f983c222c" + "0bf12c24-2cf0-491c-a396-66c495fa12ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093824Z:ff3cf105-82fe-4dd2-ba3b-574f983c222c" + "CENTRALUS:20160319T112856Z:0bf12c24-2cf0-491c-a396-66c495fa12ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -301,14 +301,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:24 GMT" + "Sat, 19 Mar 2016 11:28:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,13 +316,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14827" ], "x-ms-request-id": [ - "7cf07f8b-692d-4389-8b86-cae52cccb072" + "269e3926-616f-45b8-a4e3-bec97e05ce06" ], "x-ms-correlation-request-id": [ - "7cf07f8b-692d-4389-8b86-cae52cccb072" + "269e3926-616f-45b8-a4e3-bec97e05ce06" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093826Z:7cf07f8b-692d-4389-8b86-cae52cccb072" + "CENTRALUS:20160319T112858Z:269e3926-616f-45b8-a4e3-bec97e05ce06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,31 +352,31 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:26 GMT" + "Sat, 19 Mar 2016 11:28:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d866489b-e0c7-4275-a1a1-c7db914c5e27-2015-12-29 09:38:15Z-P" + "b6b58e18-c443-4bd4-8879-55f30e7fe477-2016-03-19 11:28:46Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -388,28 +388,28 @@ "no-cache" ], "x-ms-request-id": [ - "3329b58f-f40d-4946-bcc8-63e95a088c7b" + "a4793fab-637a-41cb-b7d6-4b1b59c0eec6" ], "x-ms-client-request-id": [ - "d866489b-e0c7-4275-a1a1-c7db914c5e27-2015-12-29 09:38:15Z-P" + "b6b58e18-c443-4bd4-8879-55f30e7fe477-2016-03-19 11:28:46Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14843" ], "x-ms-correlation-request-id": [ - "3329b58f-f40d-4946-bcc8-63e95a088c7b" + "a4793fab-637a-41cb-b7d6-4b1b59c0eec6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093817Z:3329b58f-f40d-4946-bcc8-63e95a088c7b" + "CENTRALUS:20160319T112847Z:a4793fab-637a-41cb-b7d6-4b1b59c0eec6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:16 GMT" + "Sat, 19 Mar 2016 11:28:47 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -418,25 +418,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57ae9d5a-f3ec-4489-9ebc-ac770af6503a-2015-12-29 09:38:17Z-P" + "95b96a25-7d74-45d0-a7bd-d2d3f392bf4e-2016-03-19 11:28:48Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -448,28 +448,28 @@ "no-cache" ], "x-ms-request-id": [ - "c424a831-80c0-47ad-bb54-6f513bf33705" + "a1ed493f-f2ea-46f7-9a69-361be3b58d9c" ], "x-ms-client-request-id": [ - "57ae9d5a-f3ec-4489-9ebc-ac770af6503a-2015-12-29 09:38:17Z-P" + "95b96a25-7d74-45d0-a7bd-d2d3f392bf4e-2016-03-19 11:28:48Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14841" ], "x-ms-correlation-request-id": [ - "c424a831-80c0-47ad-bb54-6f513bf33705" + "a1ed493f-f2ea-46f7-9a69-361be3b58d9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093818Z:c424a831-80c0-47ad-bb54-6f513bf33705" + "CENTRALUS:20160319T112848Z:a1ed493f-f2ea-46f7-9a69-361be3b58d9c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:17 GMT" + "Sat, 19 Mar 2016 11:28:48 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -478,25 +478,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3170fde2-9aeb-4ef6-8715-66ccdad0280d-2015-12-29 09:38:19Z-P" + "01f005f9-809d-4a0a-ab4c-9b1afa89065b-2016-03-19 11:28:51Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -508,28 +508,28 @@ "no-cache" ], "x-ms-request-id": [ - "b5fc0711-56d8-47a7-b74c-d9b452499522" + "22582fd0-cf31-47c4-98c6-108ca0c0fbbf" ], "x-ms-client-request-id": [ - "3170fde2-9aeb-4ef6-8715-66ccdad0280d-2015-12-29 09:38:19Z-P" + "01f005f9-809d-4a0a-ab4c-9b1afa89065b-2016-03-19 11:28:51Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14838" ], "x-ms-correlation-request-id": [ - "b5fc0711-56d8-47a7-b74c-d9b452499522" + "22582fd0-cf31-47c4-98c6-108ca0c0fbbf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093820Z:b5fc0711-56d8-47a7-b74c-d9b452499522" + "CENTRALUS:20160319T112851Z:22582fd0-cf31-47c4-98c6-108ca0c0fbbf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:19 GMT" + "Sat, 19 Mar 2016 11:28:51 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -538,25 +538,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f8115d6-c1d2-4c81-9dcb-697fa721f661-2015-12-29 09:38:21Z-P" + "bcd286f3-a101-4bde-9099-75c8efc4187a-2016-03-19 11:28:53Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -568,28 +568,28 @@ "no-cache" ], "x-ms-request-id": [ - "c1467fad-1860-4a17-95da-0547ba41a4bd" + "d01e6ddc-5ff4-4d42-b147-63529b1716d1" ], "x-ms-client-request-id": [ - "5f8115d6-c1d2-4c81-9dcb-697fa721f661-2015-12-29 09:38:21Z-P" + "bcd286f3-a101-4bde-9099-75c8efc4187a-2016-03-19 11:28:53Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14835" ], "x-ms-correlation-request-id": [ - "c1467fad-1860-4a17-95da-0547ba41a4bd" + "d01e6ddc-5ff4-4d42-b147-63529b1716d1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093822Z:c1467fad-1860-4a17-95da-0547ba41a4bd" + "CENTRALUS:20160319T112853Z:d01e6ddc-5ff4-4d42-b147-63529b1716d1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:22 GMT" + "Sat, 19 Mar 2016 11:28:53 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -598,25 +598,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca7dece5-ce52-42fc-9ca6-b87bacbb6523-2015-12-29 09:38:23Z-P" + "0c30a000-4c84-42ee-92f1-5accb0f7a326-2016-03-19 11:28:55Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -628,28 +628,28 @@ "no-cache" ], "x-ms-request-id": [ - "e6d39238-516e-42ed-88fb-78cf40d8ea42" + "79f53c23-906c-4d54-8820-ae49efbb436b" ], "x-ms-client-request-id": [ - "ca7dece5-ce52-42fc-9ca6-b87bacbb6523-2015-12-29 09:38:23Z-P" + "0c30a000-4c84-42ee-92f1-5accb0f7a326-2016-03-19 11:28:55Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14832" ], "x-ms-correlation-request-id": [ - "e6d39238-516e-42ed-88fb-78cf40d8ea42" + "79f53c23-906c-4d54-8820-ae49efbb436b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093823Z:e6d39238-516e-42ed-88fb-78cf40d8ea42" + "CENTRALUS:20160319T112855Z:79f53c23-906c-4d54-8820-ae49efbb436b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:23 GMT" + "Sat, 19 Mar 2016 11:28:55 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -658,25 +658,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "769a1d94-0ddd-4b7b-9125-c6ca1bf352de-2015-12-29 09:38:24Z-P" + "8736e868-ec9f-48a9-9c17-1c796b71f62e-2016-03-19 11:28:56Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -688,28 +688,28 @@ "no-cache" ], "x-ms-request-id": [ - "9462e359-dd96-477f-968f-785587cc08e9" + "e0305b69-2860-4163-a65d-2a26c0cfc76d" ], "x-ms-client-request-id": [ - "769a1d94-0ddd-4b7b-9125-c6ca1bf352de-2015-12-29 09:38:24Z-P" + "8736e868-ec9f-48a9-9c17-1c796b71f62e-2016-03-19 11:28:56Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14829" ], "x-ms-correlation-request-id": [ - "9462e359-dd96-477f-968f-785587cc08e9" + "e0305b69-2860-4163-a65d-2a26c0cfc76d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093825Z:9462e359-dd96-477f-968f-785587cc08e9" + "CENTRALUS:20160319T112857Z:e0305b69-2860-4163-a65d-2a26c0cfc76d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:25 GMT" + "Sat, 19 Mar 2016 11:28:56 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -718,25 +718,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d6d807d-d3db-4c91-8c35-0163d3dd3ad0-2015-12-29 09:38:26Z-P" + "a178a838-8bfc-4f61-a700-8c82754c35d5-2016-03-19 11:28:58Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -748,28 +748,28 @@ "no-cache" ], "x-ms-request-id": [ - "2a18ae37-4d11-4e10-b9ef-45acac851d0a" + "03c18761-02f0-45e8-a2e7-8e6cb2c14bc7" ], "x-ms-client-request-id": [ - "6d6d807d-d3db-4c91-8c35-0163d3dd3ad0-2015-12-29 09:38:26Z-P" + "a178a838-8bfc-4f61-a700-8c82754c35d5-2016-03-19 11:28:58Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14826" ], "x-ms-correlation-request-id": [ - "2a18ae37-4d11-4e10-b9ef-45acac851d0a" + "03c18761-02f0-45e8-a2e7-8e6cb2c14bc7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093827Z:2a18ae37-4d11-4e10-b9ef-45acac851d0a" + "CENTRALUS:20160319T112859Z:03c18761-02f0-45e8-a2e7-8e6cb2c14bc7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:38:26 GMT" + "Sat, 19 Mar 2016 11:28:58 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -778,13 +778,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "532fdae8-9551-4f63-a72a-dc0876b582a5-2015-12-29 09:38:17Z-P" + "d0cb111f-3bbb-493f-b02a-dadcd50d7bac-2016-03-19 11:28:48Z-P" ], "x-ms-version": [ "2015-01-01" @@ -793,10 +793,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"B2asite1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2asite1\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"0701FCFCE38E6BA24DBFE0CEEAEE59A18ED279E9\",\r\n \"kekCertExpiryDate\": \"2019-03-17T17:51:50Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "580" + "808" ], "Content-Type": [ "application/json" @@ -808,7 +808,7 @@ "no-cache" ], "x-ms-request-id": [ - "532fdae8-9551-4f63-a72a-dc0876b582a5-2015-12-29 09:38:17Z-P 12/29/2015 9:38:19 AM" + "d0cb111f-3bbb-493f-b02a-dadcd50d7bac-2016-03-19 11:28:48Z-P 3/19/2016 11:28:50 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -827,31 +827,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "532fdae8-9551-4f63-a72a-dc0876b582a5-2015-12-29 09:38:17Z-P" + "d0cb111f-3bbb-493f-b02a-dadcd50d7bac-2016-03-19 11:28:48Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14840" ], "x-ms-correlation-request-id": [ - "63a1a868-81fe-4bba-9706-ac612ae3e3a8" + "5671ce87-d3fa-46ee-ab9f-70faf7b66775" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093819Z:63a1a868-81fe-4bba-9706-ac612ae3e3a8" + "CENTRALUS:20160319T112850Z:5671ce87-d3fa-46ee-ab9f-70faf7b66775" ], "Date": [ - "Tue, 29 Dec 2015 09:38:19 GMT" + "Sat, 19 Mar 2016 11:28:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c748367-6dd2-4c4d-98c5-f94d86d6cd83-2015-12-29 09:38:20Z-P" + "3cc6a0d0-a439-4a6d-ab32-7cb7bf3d02ef-2016-03-19 11:28:52Z-P" ], "x-ms-version": [ "2015-01-01" @@ -860,10 +860,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"name\": \"cloud_4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"B2asite1\",\r\n \"friendlyName\": \"B2asite1\",\r\n \"fabricType\": \"HyperVSite\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"name\": \"9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_b67769bd_20468OE97116\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "629" + "1411" ], "Content-Type": [ "application/json" @@ -875,7 +875,7 @@ "no-cache" ], "x-ms-request-id": [ - "2c748367-6dd2-4c4d-98c5-f94d86d6cd83-2015-12-29 09:38:20Z-P 12/29/2015 9:38:21 AM" + "3cc6a0d0-a439-4a6d-ab32-7cb7bf3d02ef-2016-03-19 11:28:52Z-P 3/19/2016 11:28:52 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -894,31 +894,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "2c748367-6dd2-4c4d-98c5-f94d86d6cd83-2015-12-29 09:38:20Z-P" + "3cc6a0d0-a439-4a6d-ab32-7cb7bf3d02ef-2016-03-19 11:28:52Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14837" ], "x-ms-correlation-request-id": [ - "436f7a20-170a-499b-917c-ebd50412769d" + "fc7953bb-4967-417c-ad23-75b9cbedcb8a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093821Z:436f7a20-170a-499b-917c-ebd50412769d" + "CENTRALUS:20160319T112852Z:fc7953bb-4967-417c-ad23-75b9cbedcb8a" ], "Date": [ - "Tue, 29 Dec 2015 09:38:20 GMT" + "Sat, 19 Mar 2016 11:28:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF80MzI5ZDQ5ZS0yZjk3LTQ1NTItYjc2NC00OTRhMzJkMjQ1MGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30adac37-3502-4223-a6fe-d6f48f06c07f-2015-12-29 09:38:22Z-P" + "19aec378-d6d8-4371-97d9-23b7309a2934-2016-03-19 11:28:54Z-P" ], "x-ms-version": [ "2015-01-01" @@ -927,10 +927,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings/ContainerMapping_f574b128-fdc0-4284-94e0-8829e08d32f0\",\r\n \"name\": \"ContainerMapping_f574b128-fdc0-4284-94e0-8829e08d32f0\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"B2asite1\",\r\n \"sourceFabricFriendlyName\": \"B2asite1\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"ppAzure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings/ContainerMapping_dde68cc5-9421-45df-b6e1-20b57fa56fc8\",\r\n \"name\": \"ContainerMapping_dde68cc5-9421-45df-b6e1-20b57fa56fc8\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"B2asite1\",\r\n \"sourceFabricFriendlyName\": \"B2asite1\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"pptest\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2255" + "691" ], "Content-Type": [ "application/json" @@ -942,7 +942,7 @@ "no-cache" ], "x-ms-request-id": [ - "30adac37-3502-4223-a6fe-d6f48f06c07f-2015-12-29 09:38:22Z-P 12/29/2015 9:38:22 AM" + "19aec378-d6d8-4371-97d9-23b7309a2934-2016-03-19 11:28:54Z-P 3/19/2016 11:28:53 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -961,31 +961,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "30adac37-3502-4223-a6fe-d6f48f06c07f-2015-12-29 09:38:22Z-P" + "19aec378-d6d8-4371-97d9-23b7309a2934-2016-03-19 11:28:54Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14834" ], "x-ms-correlation-request-id": [ - "a5a62372-a747-4dc1-a5c7-6caa1538a6ba" + "2d1c1e47-7bbb-4ac5-a4e5-bcbaf3a859fa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093823Z:a5a62372-a747-4dc1-a5c7-6caa1538a6ba" + "CENTRALUS:20160319T112854Z:2d1c1e47-7bbb-4ac5-a4e5-bcbaf3a859fa" ], "Date": [ - "Tue, 29 Dec 2015 09:38:23 GMT" + "Sat, 19 Mar 2016 11:28:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfba9867-c692-4ffb-af1e-01190ab65270-2015-12-29 09:38:23Z-P" + "9bf33bc4-768d-4bc5-88d7-a2c3dab2d0ab-2016-03-19 11:28:55Z-P" ], "x-ms-version": [ "2015-01-01" @@ -994,10 +994,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/b2astorageversion1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "697" + "28" ], "Content-Type": [ "application/json" @@ -1009,7 +1009,7 @@ "no-cache" ], "x-ms-request-id": [ - "bfba9867-c692-4ffb-af1e-01190ab65270-2015-12-29 09:38:23Z-P 12/29/2015 9:38:24 AM" + "9bf33bc4-768d-4bc5-88d7-a2c3dab2d0ab-2016-03-19 11:28:55Z-P 3/19/2016 11:28:55 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1028,31 +1028,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "bfba9867-c692-4ffb-af1e-01190ab65270-2015-12-29 09:38:23Z-P" + "9bf33bc4-768d-4bc5-88d7-a2c3dab2d0ab-2016-03-19 11:28:55Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14831" ], "x-ms-correlation-request-id": [ - "9ed8e26f-c9e9-44ce-8c55-56096c61a80e" + "e0105927-6e22-47ad-b928-cc85157f4f67" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093824Z:9ed8e26f-c9e9-44ce-8c55-56096c61a80e" + "CENTRALUS:20160319T112856Z:e0105927-6e22-47ad-b928-cc85157f4f67" ], "Date": [ - "Tue, 29 Dec 2015 09:38:24 GMT" + "Sat, 19 Mar 2016 11:28:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwdGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a01a925c-78c6-454b-98e9-f87cafa43ff3-2015-12-29 09:38:25Z-P" + "6a117f08-48fe-4fbf-a602-d92e303da6c8-2016-03-19 11:28:57Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1061,10 +1061,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"name\": \"pptest\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"pptest\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "663" + "700" ], "Content-Type": [ "application/json" @@ -1076,7 +1076,7 @@ "no-cache" ], "x-ms-request-id": [ - "a01a925c-78c6-454b-98e9-f87cafa43ff3-2015-12-29 09:38:25Z-P 12/29/2015 9:38:26 AM" + "6a117f08-48fe-4fbf-a602-d92e303da6c8-2016-03-19 11:28:57Z-P 3/19/2016 11:28:57 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,31 +1095,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "a01a925c-78c6-454b-98e9-f87cafa43ff3-2015-12-29 09:38:25Z-P" + "6a117f08-48fe-4fbf-a602-d92e303da6c8-2016-03-19 11:28:57Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14828" ], "x-ms-correlation-request-id": [ - "cca6271f-24e7-40d3-98bd-fbd2abb0207e" + "7ecf7d93-337a-4370-b089-edbb60ad3e1c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093826Z:cca6271f-24e7-40d3-98bd-fbd2abb0207e" + "CENTRALUS:20160319T112857Z:7ecf7d93-337a-4370-b089-edbb60ad3e1c" ], "Date": [ - "Tue, 29 Dec 2015 09:38:25 GMT" + "Sat, 19 Mar 2016 11:28:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fc1282c-bdb7-4515-bf1e-975ccfa66592-2015-12-29 09:38:27Z-P" + "7bb2f3d1-0d14-4b71-ac3a-489f0cca586b-2016-03-19 11:28:59Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1128,10 +1128,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"name\": \"pptest\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"pptest\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/b2astorageversion1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "672" ], "Content-Type": [ "application/json" @@ -1143,7 +1143,7 @@ "no-cache" ], "x-ms-request-id": [ - "4fc1282c-bdb7-4515-bf1e-975ccfa66592-2015-12-29 09:38:27Z-P 12/29/2015 9:38:27 AM" + "7bb2f3d1-0d14-4b71-ac3a-489f0cca586b-2016-03-19 11:28:59Z-P 3/19/2016 11:28:59 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1162,19 +1162,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "4fc1282c-bdb7-4515-bf1e-975ccfa66592-2015-12-29 09:38:27Z-P" + "7bb2f3d1-0d14-4b71-ac3a-489f0cca586b-2016-03-19 11:28:59Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14825" ], "x-ms-correlation-request-id": [ - "884e948c-88f9-46ed-bf1e-eaa0b038c507" + "fefdc63b-f8b2-42f1-97c1-379bc6a757f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093827Z:884e948c-88f9-46ed-bf1e-eaa0b038c507" + "CENTRALUS:20160319T112859Z:fefdc63b-f8b2-42f1-97c1-379bc6a757f2" ], "Date": [ - "Tue, 29 Dec 2015 09:38:27 GMT" + "Sat, 19 Mar 2016 11:28:59 GMT" ] }, "StatusCode": 200 @@ -1182,6 +1182,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestCreateProfile.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestCreateProfile.json index 9ed38f0fea1b..a78acd7fa0dd 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestCreateProfile.json +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestCreateProfile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14792" ], "x-ms-request-id": [ - "8460aa0b-e7ae-4c16-85cc-37fcd04adec6" + "72cb46f5-be54-434e-a76e-1c7fa1ea3519" ], "x-ms-correlation-request-id": [ - "8460aa0b-e7ae-4c16-85cc-37fcd04adec6" + "72cb46f5-be54-434e-a76e-1c7fa1ea3519" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093115Z:8460aa0b-e7ae-4c16-85cc-37fcd04adec6" + "CENTRALUS:20160319T112725Z:72cb46f5-be54-434e-a76e-1c7fa1ea3519" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:31:15 GMT" + "Sat, 19 Mar 2016 11:27:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14790" ], "x-ms-request-id": [ - "227b955e-8f85-4547-9bb8-f3a8fb9a9f9e" + "c50ff750-7e3b-43de-aa4f-7ae6f9292e6d" ], "x-ms-correlation-request-id": [ - "227b955e-8f85-4547-9bb8-f3a8fb9a9f9e" + "c50ff750-7e3b-43de-aa4f-7ae6f9292e6d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093118Z:227b955e-8f85-4547-9bb8-f3a8fb9a9f9e" + "CENTRALUS:20160319T112727Z:c50ff750-7e3b-43de-aa4f-7ae6f9292e6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:31:17 GMT" + "Sat, 19 Mar 2016 11:27:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14788" ], "x-ms-request-id": [ - "e4b82f30-f29e-410f-a863-1593ce250594" + "eeccdcea-2f37-4c7c-a470-1d5bab5d4a60" ], "x-ms-correlation-request-id": [ - "e4b82f30-f29e-410f-a863-1593ce250594" + "eeccdcea-2f37-4c7c-a470-1d5bab5d4a60" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093122Z:e4b82f30-f29e-410f-a863-1593ce250594" + "CENTRALUS:20160319T112732Z:eeccdcea-2f37-4c7c-a470-1d5bab5d4a60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,31 +148,31 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:31:22 GMT" + "Sat, 19 Mar 2016 11:27:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fec78e29-aabf-438b-990a-0bd6d59e89d4-2015-12-29 09:31:15Z-P" + "5d210470-6196-4290-8121-5eadc4ad0174-2016-03-19 11:27:24Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -184,28 +184,28 @@ "no-cache" ], "x-ms-request-id": [ - "fb1d215c-5ec8-4917-989a-aac366b9b5b6" + "c6637ee2-f114-49ff-a3a2-322c12c217c3" ], "x-ms-client-request-id": [ - "fec78e29-aabf-438b-990a-0bd6d59e89d4-2015-12-29 09:31:15Z-P" + "5d210470-6196-4290-8121-5eadc4ad0174-2016-03-19 11:27:24Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14791" ], "x-ms-correlation-request-id": [ - "fb1d215c-5ec8-4917-989a-aac366b9b5b6" + "c6637ee2-f114-49ff-a3a2-322c12c217c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093117Z:fb1d215c-5ec8-4917-989a-aac366b9b5b6" + "CENTRALUS:20160319T112727Z:c6637ee2-f114-49ff-a3a2-322c12c217c3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:31:17 GMT" + "Sat, 19 Mar 2016 11:27:26 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -214,25 +214,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e3dbc6e-3654-4b4f-823d-981d9eca2d38-2015-12-29 09:31:18Z-P" + "bd27ec12-9048-4cbe-9233-a52dc5a58805-2016-03-19 11:27:26Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -244,28 +244,28 @@ "no-cache" ], "x-ms-request-id": [ - "43d99af5-af09-4415-a263-1d7f64c68106" + "33124423-61ed-44af-af30-30fdca0c75ab" ], "x-ms-client-request-id": [ - "8e3dbc6e-3654-4b4f-823d-981d9eca2d38-2015-12-29 09:31:18Z-P" + "bd27ec12-9048-4cbe-9233-a52dc5a58805-2016-03-19 11:27:26Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14789" ], "x-ms-correlation-request-id": [ - "43d99af5-af09-4415-a263-1d7f64c68106" + "33124423-61ed-44af-af30-30fdca0c75ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093118Z:43d99af5-af09-4415-a263-1d7f64c68106" + "CENTRALUS:20160319T112727Z:33124423-61ed-44af-af30-30fdca0c75ab" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:31:17 GMT" + "Sat, 19 Mar 2016 11:27:27 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -274,25 +274,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "894088d7-32b0-43f8-995b-635ec0459466-2015-12-29 09:31:22Z-P" + "82253a76-4125-4172-87b2-8b9f14fa2200-2016-03-19 11:27:31Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -304,28 +304,28 @@ "no-cache" ], "x-ms-request-id": [ - "4480005f-f440-4724-b01e-1f6995a0ab00" + "87462807-3368-4787-a738-139af3856715" ], "x-ms-client-request-id": [ - "894088d7-32b0-43f8-995b-635ec0459466-2015-12-29 09:31:22Z-P" + "82253a76-4125-4172-87b2-8b9f14fa2200-2016-03-19 11:27:31Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14787" ], "x-ms-correlation-request-id": [ - "4480005f-f440-4724-b01e-1f6995a0ab00" + "87462807-3368-4787-a738-139af3856715" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093122Z:4480005f-f440-4724-b01e-1f6995a0ab00" + "CENTRALUS:20160319T112733Z:87462807-3368-4787-a738-139af3856715" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:31:22 GMT" + "Sat, 19 Mar 2016 11:27:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -334,22 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDuration\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"storageAccounts\": [\r\n \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/b2astorageversion1\"\r\n ],\r\n \"encryption\": \"Disable\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDuration\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"storageAccounts\": [\r\n \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n ],\r\n \"encryption\": \"Disable\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json" ], "Content-Length": [ - "487" + "456" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1451377878680)\\/\",\"NotAfterTimestamp\":\"\\/Date(1451982678680)\\/\",\"ClientRequestId\":\"ac02f106-26e4-480a-a612-fe8fcd4a0971-2015-12-29 09:31:18Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"H+F/jbICqPRvrsy99SZG1m6RxA9jWdR3D5GmvDhxvu4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1458383246862)\\/\",\"NotAfterTimestamp\":\"\\/Date(1458988046862)\\/\",\"ClientRequestId\":\"e6f30800-5ab6-43ef-9733-2d3fe3da04cc-2016-03-19 11:27:26Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y/1HfpgMiF5Wlajs0MrLyINrpm7yHKYUUPXJCnTwi6k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "x-ms-client-request-id": [ - "ac02f106-26e4-480a-a612-fe8fcd4a0971-2015-12-29 09:31:18Z-P" + "e6f30800-5ab6-43ef-9733-2d3fe3da04cc-2016-03-19 11:27:26Z-P" ], "x-ms-version": [ "2015-01-01" @@ -373,34 +373,34 @@ "30" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/Jobs/53eeae5b-e1c8-45aa-a73f-e28bd6875265?api-version=2015-11-10" + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/f306b8d9-978c-4751-bdfa-6da383501cb4?api-version=2015-11-10" ], "x-ms-request-id": [ - "ac02f106-26e4-480a-a612-fe8fcd4a0971-2015-12-29 09:31:18Z-P 12/29/2015 9:31:21 AM" + "e6f30800-5ab6-43ef-9733-2d3fe3da04cc-2016-03-19 11:27:26Z-P 3/19/2016 11:27:30 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-client-request-id": [ - "ac02f106-26e4-480a-a612-fe8fcd4a0971-2015-12-29 09:31:18Z-P" + "e6f30800-5ab6-43ef-9733-2d3fe3da04cc-2016-03-19 11:27:26Z-P" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "47110516-3c4a-48f9-9aaf-5f71b4d39bd3" + "0602f3b5-9c5f-4826-ae7a-2e938b8b73da" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093121Z:47110516-3c4a-48f9-9aaf-5f71b4d39bd3" + "CENTRALUS:20160319T112730Z:0602f3b5-9c5f-4826-ae7a-2e938b8b73da" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:31:20 GMT" + "Sat, 19 Mar 2016 11:27:30 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure/operationresults/53eeae5b-e1c8-45aa-a73f-e28bd6875265?api-version=2015-11-10" + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure/operationresults/f306b8d9-978c-4751-bdfa-6da383501cb4?api-version=2015-11-10" ], "X-Powered-By": [ "ASP.NET" @@ -409,13 +409,13 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationJobs/53eeae5b-e1c8-45aa-a73f-e28bd6875265?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkpvYnMvNTNlZWFlNWItZTFjOC00NWFhLWE3M2YtZTI4YmQ2ODc1MjY1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/f306b8d9-978c-4751-bdfa-6da383501cb4?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uSm9icy9mMzA2YjhkOS05NzhjLTQ3NTEtYmRmYS02ZGEzODM1MDFjYjQ/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36e8a0b8-8049-453d-a6ed-11c078658e10-2015-12-29 09:31:22Z-P" + "97d56e71-3c2d-4bdd-a5df-d42bdd5eedb7-2016-03-19 11:27:32Z-P" ], "x-ms-version": [ "2015-01-01" @@ -424,10 +424,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationJobs/53eeae5b-e1c8-45aa-a73f-e28bd6875265\",\r\n \"name\": \"53eeae5b-e1c8-45aa-a73f-e28bd6875265\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ac02f106-26e4-480a-a612-fe8fcd4a0971-2015-12-29 09:31:18Z-P ActivityId: 47110516-3c4a-48f9-9aaf-5f71b4d39bd3\",\r\n \"scenarioName\": null,\r\n \"friendlyName\": null,\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"allowedActions\": [],\r\n \"targetObjectId\": null,\r\n \"targetObjectName\": null,\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/f306b8d9-978c-4751-bdfa-6da383501cb4\",\r\n \"name\": \"f306b8d9-978c-4751-bdfa-6da383501cb4\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e6f30800-5ab6-43ef-9733-2d3fe3da04cc-2016-03-19 11:27:26Z-P ActivityId: 0602f3b5-9c5f-4826-ae7a-2e938b8b73da\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Configuring protection group\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2016-03-19T11:27:31.8791049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the protection group\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding the protection group\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2016-03-19T11:27:29.4527392Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"53365906-7dbc-44f7-9501-a3977023a97f\",\r\n \"targetObjectName\": \"ppAzure\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n },\r\n \"status\": \"InProgress\",\r\n \"error\": null,\r\n \"startTime\": \"2016-03-19T11:27:29.4527392Z\",\r\n \"endTime\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "754" + "1781" ], "Content-Type": [ "application/json" @@ -439,7 +439,7 @@ "no-cache" ], "x-ms-request-id": [ - "36e8a0b8-8049-453d-a6ed-11c078658e10-2015-12-29 09:31:22Z-P 12/29/2015 9:31:23 AM" + "97d56e71-3c2d-4bdd-a5df-d42bdd5eedb7-2016-03-19 11:27:32Z-P 3/19/2016 11:27:32 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -458,19 +458,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "36e8a0b8-8049-453d-a6ed-11c078658e10-2015-12-29 09:31:22Z-P" + "97d56e71-3c2d-4bdd-a5df-d42bdd5eedb7-2016-03-19 11:27:32Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14847" ], "x-ms-correlation-request-id": [ - "c824356f-527f-4aaf-b4c7-531daac76ba8" + "accf2967-39cf-4e23-83ab-b9f4d5dced18" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093123Z:c824356f-527f-4aaf-b4c7-531daac76ba8" + "CENTRALUS:20160319T112732Z:accf2967-39cf-4e23-83ab-b9f4d5dced18" ], "Date": [ - "Tue, 29 Dec 2015 09:31:23 GMT" + "Sat, 19 Mar 2016 11:27:32 GMT" ] }, "StatusCode": 200 @@ -478,6 +478,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestCreateRP.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestCreateRP.json new file mode 100644 index 000000000000..e7f0a57c3d3c --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestCreateRP.json @@ -0,0 +1,3153 @@ +{ + "Entries": [ + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-request-id": [ + "e21c7c0d-3746-490b-ad73-0351986ca16b" + ], + "x-ms-correlation-request-id": [ + "e21c7c0d-3746-490b-ad73-0351986ca16b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114433Z:e21c7c0d-3746-490b-ad73-0351986ca16b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-request-id": [ + "be5cbcae-706c-48b6-896c-965779cc46d8" + ], + "x-ms-correlation-request-id": [ + "be5cbcae-706c-48b6-896c-965779cc46d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114434Z:be5cbcae-706c-48b6-896c-965779cc46d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14778" + ], + "x-ms-request-id": [ + "f2c77c42-6e05-4b97-94d6-03be66156ed0" + ], + "x-ms-correlation-request-id": [ + "f2c77c42-6e05-4b97-94d6-03be66156ed0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114438Z:f2c77c42-6e05-4b97-94d6-03be66156ed0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14776" + ], + "x-ms-request-id": [ + "e12ff984-bcb1-48cd-bffc-001db2046f2f" + ], + "x-ms-correlation-request-id": [ + "e12ff984-bcb1-48cd-bffc-001db2046f2f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114440Z:e12ff984-bcb1-48cd-bffc-001db2046f2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14774" + ], + "x-ms-request-id": [ + "028d2e60-86b5-4db5-9f82-5bce20433f9d" + ], + "x-ms-correlation-request-id": [ + "028d2e60-86b5-4db5-9f82-5bce20433f9d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114442Z:028d2e60-86b5-4db5-9f82-5bce20433f9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14772" + ], + "x-ms-request-id": [ + "8731756c-405f-4869-b96e-a02185de3e4d" + ], + "x-ms-correlation-request-id": [ + "8731756c-405f-4869-b96e-a02185de3e4d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114443Z:8731756c-405f-4869-b96e-a02185de3e4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14770" + ], + "x-ms-request-id": [ + "a6ed1f79-4d8a-4b70-8eb0-3076ba1007c8" + ], + "x-ms-correlation-request-id": [ + "a6ed1f79-4d8a-4b70-8eb0-3076ba1007c8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114445Z:a6ed1f79-4d8a-4b70-8eb0-3076ba1007c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14768" + ], + "x-ms-request-id": [ + "1c5c99e8-abf8-4c0d-a41a-f8c98d47bf39" + ], + "x-ms-correlation-request-id": [ + "1c5c99e8-abf8-4c0d-a41a-f8c98d47bf39" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114447Z:1c5c99e8-abf8-4c0d-a41a-f8c98d47bf39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-request-id": [ + "fdbb6ca9-4a30-4936-bb27-ce3f63a4138a" + ], + "x-ms-correlation-request-id": [ + "fdbb6ca9-4a30-4936-bb27-ce3f63a4138a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114449Z:fdbb6ca9-4a30-4936-bb27-ce3f63a4138a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-request-id": [ + "60e95487-3380-4998-bc60-c47e39b8cd6a" + ], + "x-ms-correlation-request-id": [ + "60e95487-3380-4998-bc60-c47e39b8cd6a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114450Z:60e95487-3380-4998-bc60-c47e39b8cd6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14762" + ], + "x-ms-request-id": [ + "7a4a1080-1646-4cd6-8fb3-ad1094832d7b" + ], + "x-ms-correlation-request-id": [ + "7a4a1080-1646-4cd6-8fb3-ad1094832d7b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114452Z:7a4a1080-1646-4cd6-8fb3-ad1094832d7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14760" + ], + "x-ms-request-id": [ + "5820f9e2-a581-48c9-885c-809aee636e42" + ], + "x-ms-correlation-request-id": [ + "5820f9e2-a581-48c9-885c-809aee636e42" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114454Z:5820f9e2-a581-48c9-885c-809aee636e42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14758" + ], + "x-ms-request-id": [ + "903b585e-3b2c-42a8-b8a5-578e23bc8353" + ], + "x-ms-correlation-request-id": [ + "903b585e-3b2c-42a8-b8a5-578e23bc8353" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114455Z:903b585e-3b2c-42a8-b8a5-578e23bc8353" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14756" + ], + "x-ms-request-id": [ + "aa6732ad-5d9f-448e-b60c-7f876e487e1d" + ], + "x-ms-correlation-request-id": [ + "aa6732ad-5d9f-448e-b60c-7f876e487e1d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114457Z:aa6732ad-5d9f-448e-b60c-7f876e487e1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14754" + ], + "x-ms-request-id": [ + "ed60b73c-6e17-4867-917e-f35bc1eab88e" + ], + "x-ms-correlation-request-id": [ + "ed60b73c-6e17-4867-917e-f35bc1eab88e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114459Z:ed60b73c-6e17-4867-917e-f35bc1eab88e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14779" + ], + "x-ms-request-id": [ + "63269a6a-ebb2-4683-a1f6-4381b04534d4" + ], + "x-ms-correlation-request-id": [ + "63269a6a-ebb2-4683-a1f6-4381b04534d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114500Z:63269a6a-ebb2-4683-a1f6-4381b04534d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:45:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14777" + ], + "x-ms-request-id": [ + "7b6fe789-ee37-45e3-8edc-34fdd1924c2e" + ], + "x-ms-correlation-request-id": [ + "7b6fe789-ee37-45e3-8edc-34fdd1924c2e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114503Z:7b6fe789-ee37-45e3-8edc-34fdd1924c2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:45:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14775" + ], + "x-ms-request-id": [ + "058a12d0-944d-4680-aed5-ff27c90f384e" + ], + "x-ms-correlation-request-id": [ + "058a12d0-944d-4680-aed5-ff27c90f384e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114506Z:058a12d0-944d-4680-aed5-ff27c90f384e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:45:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70bca4c4-b5a8-40d8-89ba-ea6624ea9850-2016-03-19 11:44:31Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c510d6c3-c78a-4cbf-939b-aea4ef602a1e" + ], + "x-ms-client-request-id": [ + "70bca4c4-b5a8-40d8-89ba-ea6624ea9850-2016-03-19 11:44:31Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" + ], + "x-ms-correlation-request-id": [ + "c510d6c3-c78a-4cbf-939b-aea4ef602a1e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114434Z:c510d6c3-c78a-4cbf-939b-aea4ef602a1e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:33 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a44f544-e4d5-40af-a1e2-055ad33cf299-2016-03-19 11:44:33Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e6e95960-a8fd-4711-8a37-f2123ac26fbd" + ], + "x-ms-client-request-id": [ + "5a44f544-e4d5-40af-a1e2-055ad33cf299-2016-03-19 11:44:33Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14779" + ], + "x-ms-correlation-request-id": [ + "e6e95960-a8fd-4711-8a37-f2123ac26fbd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114435Z:e6e95960-a8fd-4711-8a37-f2123ac26fbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:34 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4587151-b1cb-47b1-8da6-6dfa1a46a9bc-2016-03-19 11:44:37Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "741d307f-b4d5-4535-8131-16175ea502e7" + ], + "x-ms-client-request-id": [ + "c4587151-b1cb-47b1-8da6-6dfa1a46a9bc-2016-03-19 11:44:37Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14777" + ], + "x-ms-correlation-request-id": [ + "741d307f-b4d5-4535-8131-16175ea502e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114439Z:741d307f-b4d5-4535-8131-16175ea502e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35f118ca-3432-4724-a817-20e679a03fdd-2016-03-19 11:44:39Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3cf21fff-05dd-4133-985d-e0f224906cae" + ], + "x-ms-client-request-id": [ + "35f118ca-3432-4724-a817-20e679a03fdd-2016-03-19 11:44:39Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14775" + ], + "x-ms-correlation-request-id": [ + "3cf21fff-05dd-4133-985d-e0f224906cae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114440Z:3cf21fff-05dd-4133-985d-e0f224906cae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16c54ed3-ce51-4e9a-84a1-2b7f09de33d8-2016-03-19 11:44:41Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "37349829-8181-4530-8f3b-f3b7bb0f7c2d" + ], + "x-ms-client-request-id": [ + "16c54ed3-ce51-4e9a-84a1-2b7f09de33d8-2016-03-19 11:44:41Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14773" + ], + "x-ms-correlation-request-id": [ + "37349829-8181-4530-8f3b-f3b7bb0f7c2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114442Z:37349829-8181-4530-8f3b-f3b7bb0f7c2d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dbb91f2-744d-4527-ae9e-8bf176382867-2016-03-19 11:44:42Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ebc33938-a72c-4ca5-bc72-c072dc9b8eae" + ], + "x-ms-client-request-id": [ + "1dbb91f2-744d-4527-ae9e-8bf176382867-2016-03-19 11:44:42Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14771" + ], + "x-ms-correlation-request-id": [ + "ebc33938-a72c-4ca5-bc72-c072dc9b8eae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114444Z:ebc33938-a72c-4ca5-bc72-c072dc9b8eae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:44 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecff2614-2018-4917-bad1-7e02d196b8e9-2016-03-19 11:44:44Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ce46a202-93c8-4b91-8546-ac1f2a89c93a" + ], + "x-ms-client-request-id": [ + "ecff2614-2018-4917-bad1-7e02d196b8e9-2016-03-19 11:44:44Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14769" + ], + "x-ms-correlation-request-id": [ + "ce46a202-93c8-4b91-8546-ac1f2a89c93a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114446Z:ce46a202-93c8-4b91-8546-ac1f2a89c93a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00c5048d-1971-4350-b2f0-0d22bdf9cf93-2016-03-19 11:44:46Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c59c17b7-0fa8-4da7-82fe-68f1db77acdd" + ], + "x-ms-client-request-id": [ + "00c5048d-1971-4350-b2f0-0d22bdf9cf93-2016-03-19 11:44:46Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-correlation-request-id": [ + "c59c17b7-0fa8-4da7-82fe-68f1db77acdd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114447Z:c59c17b7-0fa8-4da7-82fe-68f1db77acdd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e596df9-4505-49f6-a16f-729f00fdd70d-2016-03-19 11:44:47Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f2d17f5-f586-4bbe-94a2-a8d31c9e4320" + ], + "x-ms-client-request-id": [ + "9e596df9-4505-49f6-a16f-729f00fdd70d-2016-03-19 11:44:47Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-correlation-request-id": [ + "8f2d17f5-f586-4bbe-94a2-a8d31c9e4320" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114449Z:8f2d17f5-f586-4bbe-94a2-a8d31c9e4320" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:49 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f607b0d5-bc85-4d73-bd13-272b4af6bdf3-2016-03-19 11:44:49Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "37d10993-b025-48f4-b4fa-418eedd10371" + ], + "x-ms-client-request-id": [ + "f607b0d5-bc85-4d73-bd13-272b4af6bdf3-2016-03-19 11:44:49Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14763" + ], + "x-ms-correlation-request-id": [ + "37d10993-b025-48f4-b4fa-418eedd10371" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114451Z:37d10993-b025-48f4-b4fa-418eedd10371" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62cbf517-dbc4-4684-b9f3-2b3c8a243d30-2016-03-19 11:44:51Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f171a4be-6fc3-4e5b-9a6e-36d54999b76c" + ], + "x-ms-client-request-id": [ + "62cbf517-dbc4-4684-b9f3-2b3c8a243d30-2016-03-19 11:44:51Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14761" + ], + "x-ms-correlation-request-id": [ + "f171a4be-6fc3-4e5b-9a6e-36d54999b76c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114452Z:f171a4be-6fc3-4e5b-9a6e-36d54999b76c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:52 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57025815-6c9e-4eac-80e9-aaf6c5bfab7b-2016-03-19 11:44:52Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "08e58027-9ca3-47fc-b3a0-3f0ae8fdb82c" + ], + "x-ms-client-request-id": [ + "57025815-6c9e-4eac-80e9-aaf6c5bfab7b-2016-03-19 11:44:52Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14759" + ], + "x-ms-correlation-request-id": [ + "08e58027-9ca3-47fc-b3a0-3f0ae8fdb82c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114454Z:08e58027-9ca3-47fc-b3a0-3f0ae8fdb82c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:54 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38156ef2-2ef5-425b-b7ea-2d3d6c412ab5-2016-03-19 11:44:54Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7868f0a7-692d-4369-a5d7-66b3a13542e0" + ], + "x-ms-client-request-id": [ + "38156ef2-2ef5-425b-b7ea-2d3d6c412ab5-2016-03-19 11:44:54Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14757" + ], + "x-ms-correlation-request-id": [ + "7868f0a7-692d-4369-a5d7-66b3a13542e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114456Z:7868f0a7-692d-4369-a5d7-66b3a13542e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3df1671-f1e8-45af-83e6-ddde9f1caf68-2016-03-19 11:44:56Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "41d25f2b-7015-4bec-88d7-88b8483f4db7" + ], + "x-ms-client-request-id": [ + "e3df1671-f1e8-45af-83e6-ddde9f1caf68-2016-03-19 11:44:56Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14755" + ], + "x-ms-correlation-request-id": [ + "41d25f2b-7015-4bec-88d7-88b8483f4db7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114458Z:41d25f2b-7015-4bec-88d7-88b8483f4db7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:57 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c8ece8c-3764-47d4-906b-bb324cc5b680-2016-03-19 11:44:58Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1667db31-c02b-4337-ad2d-0b3767e6b586" + ], + "x-ms-client-request-id": [ + "8c8ece8c-3764-47d4-906b-bb324cc5b680-2016-03-19 11:44:58Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14753" + ], + "x-ms-correlation-request-id": [ + "1667db31-c02b-4337-ad2d-0b3767e6b586" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114459Z:1667db31-c02b-4337-ad2d-0b3767e6b586" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:59 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67d5a26c-badf-4dc8-9756-c8fb5de11a56-2016-03-19 11:44:59Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ed22176d-c4bb-4068-826d-118e5d2e665f" + ], + "x-ms-client-request-id": [ + "67d5a26c-badf-4dc8-9756-c8fb5de11a56-2016-03-19 11:44:59Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14778" + ], + "x-ms-correlation-request-id": [ + "ed22176d-c4bb-4068-826d-118e5d2e665f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114502Z:ed22176d-c4bb-4068-826d-118e5d2e665f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:45:01 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f97c0f40-3926-4189-8b4d-3d8d581b8553-2016-03-19 11:45:02Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6c57f809-b593-41e9-beb1-9cd45cfb020d" + ], + "x-ms-client-request-id": [ + "f97c0f40-3926-4189-8b4d-3d8d581b8553-2016-03-19 11:45:02Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14776" + ], + "x-ms-correlation-request-id": [ + "6c57f809-b593-41e9-beb1-9cd45cfb020d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114503Z:6c57f809-b593-41e9-beb1-9cd45cfb020d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:45:03 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5a1fbd7-6777-4d7d-95bc-98e884e5c991-2016-03-19 11:45:05Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "89d05a09-1b77-445e-b858-b0fd78f4fb65" + ], + "x-ms-client-request-id": [ + "a5a1fbd7-6777-4d7d-95bc-98e884e5c991-2016-03-19 11:45:05Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14774" + ], + "x-ms-correlation-request-id": [ + "89d05a09-1b77-445e-b858-b0fd78f4fb65" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114506Z:89d05a09-1b77-445e-b858-b0fd78f4fb65" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:45:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad9bee63-2e48-464f-a13f-0aa73bb5d23e-2016-03-19 11:44:34Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"0701FCFCE38E6BA24DBFE0CEEAEE59A18ED279E9\",\r\n \"kekCertExpiryDate\": \"2019-03-17T17:51:50Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "808" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ad9bee63-2e48-464f-a13f-0aa73bb5d23e-2016-03-19 11:44:34Z-P 3/19/2016 11:44:36 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "ad9bee63-2e48-464f-a13f-0aa73bb5d23e-2016-03-19 11:44:34Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14815" + ], + "x-ms-correlation-request-id": [ + "f05505dc-3579-4774-8358-ecc0b71705c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114437Z:f05505dc-3579-4774-8358-ecc0b71705c0" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "235fe75a-c928-4a24-a98e-ff376f448174-2016-03-19 11:44:45Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"0701FCFCE38E6BA24DBFE0CEEAEE59A18ED279E9\",\r\n \"kekCertExpiryDate\": \"2019-03-17T17:51:50Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "808" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "235fe75a-c928-4a24-a98e-ff376f448174-2016-03-19 11:44:45Z-P 3/19/2016 11:44:45 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "235fe75a-c928-4a24-a98e-ff376f448174-2016-03-19 11:44:45Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14810" + ], + "x-ms-correlation-request-id": [ + "fec94f04-4b7c-4ae4-8965-de359e781528" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114445Z:fec94f04-4b7c-4ae4-8965-de359e781528" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1ef68d2-3706-4010-8016-d59113177244-2016-03-19 11:44:38Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"name\": \"9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_b67769bd_20468OE97116\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e1ef68d2-3706-4010-8016-d59113177244-2016-03-19 11:44:38Z-P 3/19/2016 11:44:38 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "e1ef68d2-3706-4010-8016-d59113177244-2016-03-19 11:44:38Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14814" + ], + "x-ms-correlation-request-id": [ + "befde064-2fba-4d09-a0d4-cf292135830f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114438Z:befde064-2fba-4d09-a0d4-cf292135830f" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17b0c48c-a607-4194-b9bb-f60744ad6161-2016-03-19 11:44:39Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "695" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "17b0c48c-a607-4194-b9bb-f60744ad6161-2016-03-19 11:44:39Z-P 3/19/2016 11:44:40 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "17b0c48c-a607-4194-b9bb-f60744ad6161-2016-03-19 11:44:39Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "0e8699eb-1be5-4f9c-ac88-1f7b3e40bd47" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114440Z:0e8699eb-1be5-4f9c-ac88-1f7b3e40bd47" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f32273b-4e16-4ff6-abe1-32bc112343d9-2016-03-19 11:44:41Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings/ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"name\": \"ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"sourceFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"ppAzure\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f32273b-4e16-4ff6-abe1-32bc112343d9-2016-03-19 11:44:41Z-P 3/19/2016 11:44:41 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "7f32273b-4e16-4ff6-abe1-32bc112343d9-2016-03-19 11:44:41Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" + ], + "x-ms-correlation-request-id": [ + "4db85819-c433-41d4-8723-8e5bf2fc886f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114442Z:4db85819-c433-41d4-8723-8e5bf2fc886f" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c61c8800-33af-4b68-a6b7-cf42efa37294-2016-03-19 11:44:43Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c61c8800-33af-4b68-a6b7-cf42efa37294-2016-03-19 11:44:43Z-P 3/19/2016 11:44:43 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "c61c8800-33af-4b68-a6b7-cf42efa37294-2016-03-19 11:44:43Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14811" + ], + "x-ms-correlation-request-id": [ + "99bc0334-3ed5-474d-ba3d-be54b9fcc47a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114444Z:99bc0334-3ed5-474d-ba3d-be54b9fcc47a" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3303f49b-9fdc-4646-a862-2d33fbace590-2016-03-19 11:44:55Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3303f49b-9fdc-4646-a862-2d33fbace590-2016-03-19 11:44:55Z-P 3/19/2016 11:44:55 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "3303f49b-9fdc-4646-a862-2d33fbace590-2016-03-19 11:44:55Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14804" + ], + "x-ms-correlation-request-id": [ + "6d3e3507-ac2d-488e-b84b-d60f9e8a9d49" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114455Z:6d3e3507-ac2d-488e-b84b-d60f9e8a9d49" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationRecoveryServicesProviders?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUmVjb3ZlcnlTZXJ2aWNlc1Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36cc0028-130c-4ea1-ad82-bba2ef712e88-2016-03-19 11:44:46Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationRecoveryServicesProviders/e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationRecoveryServicesProviders\",\r\n \"name\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"properties\": {\r\n \"fabricType\": \"VMM\",\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"providerVersion\": \"5.1.1300.0\",\r\n \"serverVersion\": \"3.2.8117.0\",\r\n \"providerVersionState\": \"Supported\",\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"lastHeartBeat\": \"2016-03-19T11:43:27.8516238Z\",\r\n \"connectionStatus\": \"Connected\",\r\n \"protectedItemCount\": 1,\r\n \"allowedScenarios\": [\r\n \"Refresh\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "875" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "36cc0028-130c-4ea1-ad82-bba2ef712e88-2016-03-19 11:44:46Z-P 3/19/2016 11:44:46 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "36cc0028-130c-4ea1-ad82-bba2ef712e88-2016-03-19 11:44:46Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14809" + ], + "x-ms-correlation-request-id": [ + "735d6ee8-41f9-4174-803a-381ffb0f6b2b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114447Z:735d6ee8-41f9-4174-803a-381ffb0f6b2b" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cd70a10-fcea-4fc6-a58f-21e86b2571bf-2016-03-19 11:44:48Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f4c1b566-716e-475c-9183-33b10effd6d2\",\r\n \"generation\": \"0\",\r\n \"osDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 25,\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A.VHD\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems?api-version=2015-11-10&%24skipToken=ReplicationGroup%3aBegin\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1954" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6cd70a10-fcea-4fc6-a58f-21e86b2571bf-2016-03-19 11:44:48Z-P 3/19/2016 11:44:48 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "6cd70a10-fcea-4fc6-a58f-21e86b2571bf-2016-03-19 11:44:48Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "10d4bfef-8767-45bc-8f55-5142aae5699f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114449Z:10d4bfef-8767-45bc-8f55-5142aae5699f" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems?api-version=2015-11-10&%24skipToken=ReplicationGroup:Begin", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcz9hcGktdmVyc2lvbj0yMDE1LTExLTEwJiUyNHNraXBUb2tlbj1SZXBsaWNhdGlvbkdyb3VwJTNhQmVnaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a56db42-3ff0-4adb-927a-255bad4178a4-2016-03-19 11:44:50Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7a56db42-3ff0-4adb-927a-255bad4178a4-2016-03-19 11:44:50Z-P 3/19/2016 11:44:50 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "7a56db42-3ff0-4adb-927a-255bad4178a4-2016-03-19 11:44:50Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-correlation-request-id": [ + "15512fd9-6154-4881-83f7-197b8144569a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114450Z:15512fd9-6154-4881-83f7-197b8144569a" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcy9iZWI2MTE5Ni00YThmLTQ3ZTEtYTI2Yy0xN2M2MmZmZDQ2OGY/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebc05ee3-e4ed-48ba-90dc-8d6317a23d0c-2016-03-19 11:44:51Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f4c1b566-716e-475c-9183-33b10effd6d2\",\r\n \"generation\": \"0\",\r\n \"osDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 25,\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A.VHD\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1497" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ebc05ee3-e4ed-48ba-90dc-8d6317a23d0c-2016-03-19 11:44:51Z-P 3/19/2016 11:44:51 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "ebc05ee3-e4ed-48ba-90dc-8d6317a23d0c-2016-03-19 11:44:51Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14806" + ], + "x-ms-correlation-request-id": [ + "e7974f76-a0ae-4594-8c26-98da1ce41e2a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114452Z:e7974f76-a0ae-4594-8c26-98da1ce41e2a" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcy9iZWI2MTE5Ni00YThmLTQ3ZTEtYTI2Yy0xN2M2MmZmZDQ2OGY/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "244c0f65-834f-48e6-af95-9affaaaca1f9-2016-03-19 11:44:58Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f4c1b566-716e-475c-9183-33b10effd6d2\",\r\n \"generation\": \"0\",\r\n \"osDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 25,\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A.VHD\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1497" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "244c0f65-834f-48e6-af95-9affaaaca1f9-2016-03-19 11:44:58Z-P 3/19/2016 11:44:58 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "244c0f65-834f-48e6-af95-9affaaaca1f9-2016-03-19 11:44:58Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14802" + ], + "x-ms-correlation-request-id": [ + "18d431d1-c170-41d8-99f6-8eb457403c92" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114459Z:18d431d1-c170-41d8-99f6-8eb457403c92" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYmViNjExOTYtNGE4Zi00N2UxLWEyNmMtMTdjNjJmZmQ0NjhmP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dc9ca9e-c8ed-4995-806f-bc4b9ac0777e-2016-03-19 11:44:53Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationRecoveryServicesProviders/e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"primaryFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"replicationHealthErrors\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"policyFriendlyName\": \"ppAzure\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f/recoveryPoints/\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVMDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A\",\r\n \"maxSizeMB\": \"25\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\"\r\n }\r\n ],\r\n \"recoveryAzureVMName\": \"vm1\",\r\n \"recoveryAzureVMSize\": \"Basic_A0\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\",\r\n \"lastReplicatedTime\": null,\r\n \"vmId\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"f7448d4e-e6a3-4b9a-a5b6-d36a82e72388\",\r\n \"vMSubnetName\": null,\r\n \"vMNetworkName\": \"00000000-0000-0000-0000-000000000000\",\r\n \"recoveryVMNetworkId\": null,\r\n \"recoveryVMSubnetName\": \"\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\"\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": null,\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"sourceVmRAMSizeInMB\": 32,\r\n \"sourceVmCPUCount\": 1\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4102" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7dc9ca9e-c8ed-4995-806f-bc4b9ac0777e-2016-03-19 11:44:53Z-P 3/19/2016 11:44:53 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "7dc9ca9e-c8ed-4995-806f-bc4b9ac0777e-2016-03-19 11:44:53Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14805" + ], + "x-ms-correlation-request-id": [ + "42e24382-5831-4db0-be17-970bac71a3d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114454Z:42e24382-5831-4db0-be17-970bac71a3d9" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYmViNjExOTYtNGE4Zi00N2UxLWEyNmMtMTdjNjJmZmQ0NjhmP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7470c2f-9263-4b76-9a54-9234d4a38324-2016-03-19 11:45:00Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationRecoveryServicesProviders/e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"primaryFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"replicationHealthErrors\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"policyFriendlyName\": \"ppAzure\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f/recoveryPoints/\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVMDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A\",\r\n \"maxSizeMB\": \"25\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\"\r\n }\r\n ],\r\n \"recoveryAzureVMName\": \"vm1\",\r\n \"recoveryAzureVMSize\": \"Basic_A0\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\",\r\n \"lastReplicatedTime\": null,\r\n \"vmId\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"f7448d4e-e6a3-4b9a-a5b6-d36a82e72388\",\r\n \"vMSubnetName\": null,\r\n \"vMNetworkName\": \"00000000-0000-0000-0000-000000000000\",\r\n \"recoveryVMNetworkId\": null,\r\n \"recoveryVMSubnetName\": \"\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\"\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": null,\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"sourceVmRAMSizeInMB\": 32,\r\n \"sourceVmCPUCount\": 1\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4102" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f7470c2f-9263-4b76-9a54-9234d4a38324-2016-03-19 11:45:00Z-P 3/19/2016 11:45:01 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "f7470c2f-9263-4b76-9a54-9234d4a38324-2016-03-19 11:45:00Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14821" + ], + "x-ms-correlation-request-id": [ + "a09775ea-92d3-4fbc-a907-fee07cc4edf3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114501Z:a09775ea-92d3-4fbc-a907-fee07cc4edf3" + ], + "Date": [ + "Sat, 19 Mar 2016 11:45:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b87bdb2a-349e-4038-8958-fce1792d0a35-2016-03-19 11:44:57Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"0701FCFCE38E6BA24DBFE0CEEAEE59A18ED279E9\",\r\n \"kekCertExpiryDate\": \"2019-03-17T17:51:50Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "780" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b87bdb2a-349e-4038-8958-fce1792d0a35-2016-03-19 11:44:57Z-P 3/19/2016 11:44:56 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "b87bdb2a-349e-4038-8958-fce1792d0a35-2016-03-19 11:44:57Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14803" + ], + "x-ms-correlation-request-id": [ + "1ab4fb36-22b9-4f1e-950e-dae42383c674" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114457Z:1ab4fb36-22b9-4f1e-950e-dae42383c674" + ], + "Date": [ + "Sat, 19 Mar 2016 11:44:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUmVjb3ZlcnlQbGFucy9ycD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"primaryFabricId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"virtualMachineId\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1049" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1458384302787)\\/\",\"NotAfterTimestamp\":\"\\/Date(1458989102787)\\/\",\"ClientRequestId\":\"0f01e825-37d1-4f3f-89fc-9ad433053a6d-2016-03-19 11:45:02Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8BU4O15UNzNjVExcb/lNbEqvF69jNErcx3meYybFFoA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "x-ms-client-request-id": [ + "0f01e825-37d1-4f3f-89fc-9ad433053a6d-2016-03-19 11:45:02Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "30" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/210ade63-3b37-4349-bb70-74df1149532e?api-version=2015-11-10" + ], + "x-ms-request-id": [ + "0f01e825-37d1-4f3f-89fc-9ad433053a6d-2016-03-19 11:45:02Z-P 3/19/2016 11:45:03 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-client-request-id": [ + "0f01e825-37d1-4f3f-89fc-9ad433053a6d-2016-03-19 11:45:02Z-P" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "861e4570-c85c-4ea2-b62b-51e785f718de" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114504Z:861e4570-c85c-4ea2-b62b-51e785f718de" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:45:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp/operationresults/210ade63-3b37-4349-bb70-74df1149532e?api-version=2015-11-10" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/210ade63-3b37-4349-bb70-74df1149532e?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uSm9icy8yMTBhZGU2My0zYjM3LTQzNDktYmI3MC03NGRmMTE0OTUzMmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0ed7756-a033-4d64-89d5-3835dc080530-2016-03-19 11:45:05Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/210ade63-3b37-4349-bb70-74df1149532e\",\r\n \"name\": \"210ade63-3b37-4349-bb70-74df1149532e\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"0f01e825-37d1-4f3f-89fc-9ad433053a6d-2016-03-19 11:45:02Z-P ActivityId: 861e4570-c85c-4ea2-b62b-51e785f718de\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"44ba4ed7-cbcf-4889-9147-f697b868cc62\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"2016-03-19T11:45:04.9977212Z\",\r\n \"endTime\": \"2016-03-19T11:45:05.3571152Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2016-03-19T11:45:03.8122678Z\",\r\n \"endTime\": \"2016-03-19T11:45:05Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4ca6b09a-aa02-482e-aa73-ff0fd948d546\",\r\n \"targetObjectName\": \"rp\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"PrimaryVmmName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"RecoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"RecoveryVmmName\": \"Microsoft Azure\",\r\n \"PrimaryFabricProviderId\": \"VMM\",\r\n \"RecoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n },\r\n \"status\": \"Succeeded\",\r\n \"error\": null,\r\n \"startTime\": \"2016-03-19T11:45:03.8122678Z\",\r\n \"endTime\": \"2016-03-19T11:45:05Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d0ed7756-a033-4d64-89d5-3835dc080530-2016-03-19 11:45:05Z-P 3/19/2016 11:45:05 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "d0ed7756-a033-4d64-89d5-3835dc080530-2016-03-19 11:45:05Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14820" + ], + "x-ms-correlation-request-id": [ + "001c5ac5-35e4-42d6-897c-89189b0dc2d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114506Z:001c5ac5-35e4-42d6-897c-89189b0dc2d5" + ], + "Date": [ + "Sat, 19 Mar 2016 11:45:05 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" + } +} \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDeleteProfile.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDeleteProfile.json index 5b9fd31a376e..73e7199eb6d1 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDeleteProfile.json +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDeleteProfile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14993" ], "x-ms-request-id": [ - "239442d3-25cc-4e83-a75a-452d7c61658f" + "50955441-fbf3-4ad9-9925-dd8922fdf5c6" ], "x-ms-correlation-request-id": [ - "239442d3-25cc-4e83-a75a-452d7c61658f" + "50955441-fbf3-4ad9-9925-dd8922fdf5c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094048Z:239442d3-25cc-4e83-a75a-452d7c61658f" + "CENTRALUS:20160319T122200Z:50955441-fbf3-4ad9-9925-dd8922fdf5c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:40:47 GMT" + "Sat, 19 Mar 2016 12:21:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14991" ], "x-ms-request-id": [ - "a049f909-4dfc-4bf0-8539-5e9c7648c924" + "8c73b1c2-e87a-4448-a66d-0f309ca9cc26" ], "x-ms-correlation-request-id": [ - "a049f909-4dfc-4bf0-8539-5e9c7648c924" + "8c73b1c2-e87a-4448-a66d-0f309ca9cc26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094050Z:a049f909-4dfc-4bf0-8539-5e9c7648c924" + "CENTRALUS:20160319T122202Z:8c73b1c2-e87a-4448-a66d-0f309ca9cc26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:40:49 GMT" + "Sat, 19 Mar 2016 12:22:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14989" ], "x-ms-request-id": [ - "7f15190f-362b-4dd4-ac5b-e6e639862923" + "0dd79086-8785-41ac-932c-108f490a1e42" ], "x-ms-correlation-request-id": [ - "7f15190f-362b-4dd4-ac5b-e6e639862923" + "0dd79086-8785-41ac-932c-108f490a1e42" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094052Z:7f15190f-362b-4dd4-ac5b-e6e639862923" + "CENTRALUS:20160319T122205Z:0dd79086-8785-41ac-932c-108f490a1e42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:40:52 GMT" + "Sat, 19 Mar 2016 12:22:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -163,13 +163,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,16 +181,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14987" ], "x-ms-request-id": [ - "b3c871a4-bc8f-42e8-95a9-931b5bfd8c6d" + "30dd6f52-33cf-45ed-ace9-e9b187bcee8a" ], "x-ms-correlation-request-id": [ - "b3c871a4-bc8f-42e8-95a9-931b5bfd8c6d" + "30dd6f52-33cf-45ed-ace9-e9b187bcee8a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094054Z:b3c871a4-bc8f-42e8-95a9-931b5bfd8c6d" + "CENTRALUS:20160319T122207Z:30dd6f52-33cf-45ed-ace9-e9b187bcee8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,31 +199,82 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:40:53 GMT" + "Sat, 19 Mar 2016 12:22:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "71aadcd9-1788-41ff-8760-7d817a0adab5" + ], + "x-ms-correlation-request-id": [ + "71aadcd9-1788-41ff-8760-7d817a0adab5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T122209Z:71aadcd9-1788-41ff-8760-7d817a0adab5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 12:22:08 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91a4ca67-01f0-42ed-9a55-f80234367a99-2015-12-29 09:40:48Z-P" + "6cc0ec23-5392-4cbf-a575-a19f064e60b4-2016-03-19 12:22:00Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -235,28 +286,28 @@ "no-cache" ], "x-ms-request-id": [ - "ce4022fd-f9bf-49fa-baf0-31ae754e31f6" + "e38f1f68-4499-49e4-ab99-2f0b1f8e79bd" ], "x-ms-client-request-id": [ - "91a4ca67-01f0-42ed-9a55-f80234367a99-2015-12-29 09:40:48Z-P" + "6cc0ec23-5392-4cbf-a575-a19f064e60b4-2016-03-19 12:22:00Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14992" ], "x-ms-correlation-request-id": [ - "ce4022fd-f9bf-49fa-baf0-31ae754e31f6" + "e38f1f68-4499-49e4-ab99-2f0b1f8e79bd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094049Z:ce4022fd-f9bf-49fa-baf0-31ae754e31f6" + "CENTRALUS:20160319T122201Z:e38f1f68-4499-49e4-ab99-2f0b1f8e79bd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:40:49 GMT" + "Sat, 19 Mar 2016 12:22:01 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -265,25 +316,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9315ea1-e5ac-435f-be83-f262a216bc86-2015-12-29 09:40:50Z-P" + "470c1e11-0e4b-4aea-beaa-17ff8490d3a5-2016-03-19 12:22:02Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -295,28 +346,28 @@ "no-cache" ], "x-ms-request-id": [ - "f94caccb-8209-4954-b0e0-c89573db3924" + "83d51c68-b649-44a2-9859-7c39d1359cea" ], "x-ms-client-request-id": [ - "a9315ea1-e5ac-435f-be83-f262a216bc86-2015-12-29 09:40:50Z-P" + "470c1e11-0e4b-4aea-beaa-17ff8490d3a5-2016-03-19 12:22:02Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14990" ], "x-ms-correlation-request-id": [ - "f94caccb-8209-4954-b0e0-c89573db3924" + "83d51c68-b649-44a2-9859-7c39d1359cea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094050Z:f94caccb-8209-4954-b0e0-c89573db3924" + "CENTRALUS:20160319T122202Z:83d51c68-b649-44a2-9859-7c39d1359cea" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:40:50 GMT" + "Sat, 19 Mar 2016 12:22:02 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -325,25 +376,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fd1f684-7a20-497c-9279-38ba057215dc-2015-12-29 09:40:52Z-P" + "7fa00ac1-8f2c-46b0-937f-29336b4faa19-2016-03-19 12:22:05Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -355,28 +406,28 @@ "no-cache" ], "x-ms-request-id": [ - "72e00284-5bf0-4984-8bdf-f516068188f1" + "934516d1-4cc0-4fd4-abe8-dfa493b31bdb" ], "x-ms-client-request-id": [ - "8fd1f684-7a20-497c-9279-38ba057215dc-2015-12-29 09:40:52Z-P" + "7fa00ac1-8f2c-46b0-937f-29336b4faa19-2016-03-19 12:22:05Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14988" ], "x-ms-correlation-request-id": [ - "72e00284-5bf0-4984-8bdf-f516068188f1" + "934516d1-4cc0-4fd4-abe8-dfa493b31bdb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094053Z:72e00284-5bf0-4984-8bdf-f516068188f1" + "CENTRALUS:20160319T122206Z:934516d1-4cc0-4fd4-abe8-dfa493b31bdb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:40:52 GMT" + "Sat, 19 Mar 2016 12:22:06 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -385,25 +436,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10027a3b-35dd-483b-bce1-3828108bc83e-2015-12-29 09:40:54Z-P" + "0bc00699-bd81-45e1-8b5b-e1fb53492138-2016-03-19 12:22:07Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -415,28 +466,28 @@ "no-cache" ], "x-ms-request-id": [ - "e6c36523-6697-466d-8f1d-ed454c94deb4" + "956f55ad-efba-4a2a-9e2b-da0cbed50f52" ], "x-ms-client-request-id": [ - "10027a3b-35dd-483b-bce1-3828108bc83e-2015-12-29 09:40:54Z-P" + "0bc00699-bd81-45e1-8b5b-e1fb53492138-2016-03-19 12:22:07Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14986" ], "x-ms-correlation-request-id": [ - "e6c36523-6697-466d-8f1d-ed454c94deb4" + "956f55ad-efba-4a2a-9e2b-da0cbed50f52" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094055Z:e6c36523-6697-466d-8f1d-ed454c94deb4" + "CENTRALUS:20160319T122207Z:956f55ad-efba-4a2a-9e2b-da0cbed50f52" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:40:54 GMT" + "Sat, 19 Mar 2016 12:22:07 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -445,13 +496,140 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15576d7c-7c8e-4f04-8e20-17cc3c701f3f-2016-03-19 12:22:09Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e201eb07-a796-4d58-a447-1209a42f31f2" + ], + "x-ms-client-request-id": [ + "15576d7c-7c8e-4f04-8e20-17cc3c701f3f-2016-03-19 12:22:09Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "e201eb07-a796-4d58-a447-1209a42f31f2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T122209Z:e201eb07-a796-4d58-a447-1209a42f31f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 12:22:09 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89907bad-4c09-43c6-ae82-9716d99cc979-2016-03-19 12:22:02Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "89907bad-4c09-43c6-ae82-9716d99cc979-2016-03-19 12:22:02Z-P 3/19/2016 12:22:04 PM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "89907bad-4c09-43c6-ae82-9716d99cc979-2016-03-19 12:22:02Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "e5732b0b-0013-48d3-8489-d1204d148d37" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T122205Z:e5732b0b-0013-48d3-8489-d1204d148d37" + ], + "Date": [ + "Sat, 19 Mar 2016 12:22:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dcec3c7-a6c2-4e68-83f8-48d296c0be8c-2015-12-29 09:40:50Z-P" + "2503e4eb-3d5d-47e2-b3fe-a868998b0f54-2016-03-19 12:22:06Z-P" ], "x-ms-version": [ "2015-01-01" @@ -460,10 +638,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"name\": \"pptest\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"pptest\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/b2astorageversion1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "672" ], "Content-Type": [ "application/json" @@ -475,7 +653,7 @@ "no-cache" ], "x-ms-request-id": [ - "7dcec3c7-a6c2-4e68-83f8-48d296c0be8c-2015-12-29 09:40:50Z-P 12/29/2015 9:40:52 AM" + "2503e4eb-3d5d-47e2-b3fe-a868998b0f54-2016-03-19 12:22:06Z-P 3/19/2016 12:22:05 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -494,34 +672,34 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "7dcec3c7-a6c2-4e68-83f8-48d296c0be8c-2015-12-29 09:40:50Z-P" + "2503e4eb-3d5d-47e2-b3fe-a868998b0f54-2016-03-19 12:22:06Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14988" ], "x-ms-correlation-request-id": [ - "b7cb3f6b-00ae-479e-b9c9-a016d33a43ac" + "5f000b17-c8d3-4b9f-a980-44f7a04cf4bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094052Z:b7cb3f6b-00ae-479e-b9c9-a016d33a43ac" + "CENTRALUS:20160319T122206Z:5f000b17-c8d3-4b9f-a980-44f7a04cf4bc" ], "Date": [ - "Tue, 29 Dec 2015 09:40:52 GMT" + "Sat, 19 Mar 2016 12:22:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1451378453217)\\/\",\"NotAfterTimestamp\":\"\\/Date(1451983253217)\\/\",\"ClientRequestId\":\"4bc167c5-21b8-4930-b0e0-5c480fefd8d5-2015-12-29 09:40:53Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vxrKlxYbV9NEb2yLTsGtmpefI5WlF6hOJbiq8cvAkCE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1458386527778)\\/\",\"NotAfterTimestamp\":\"\\/Date(1458991327778)\\/\",\"ClientRequestId\":\"8b6382cc-d106-467a-8cbe-efb4dab38bd1-2016-03-19 12:22:07Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KLeOM1NyKy9QnVD1ZyypaUM9iZ17vjdy+GaaTm6IBKY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "x-ms-client-request-id": [ - "4bc167c5-21b8-4930-b0e0-5c480fefd8d5-2015-12-29 09:40:53Z-P" + "8b6382cc-d106-467a-8cbe-efb4dab38bd1-2016-03-19 12:22:07Z-P" ], "x-ms-version": [ "2015-01-01" @@ -545,34 +723,34 @@ "30" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/Jobs/944c09c4-578c-4897-98bf-6ab2fd581b6b?api-version=2015-11-10" + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/ba9fd66b-d5ea-450a-bc44-8604fc8d49ae?api-version=2015-11-10" ], "x-ms-request-id": [ - "4bc167c5-21b8-4930-b0e0-5c480fefd8d5-2015-12-29 09:40:53Z-P 12/29/2015 9:40:54 AM" + "8b6382cc-d106-467a-8cbe-efb4dab38bd1-2016-03-19 12:22:07Z-P 3/19/2016 12:22:07 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-client-request-id": [ - "4bc167c5-21b8-4930-b0e0-5c480fefd8d5-2015-12-29 09:40:53Z-P" + "8b6382cc-d106-467a-8cbe-efb4dab38bd1-2016-03-19 12:22:07Z-P" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "aeb70132-583d-4b7a-98e1-cd67bc715fbd" + "a6fd50ce-4e9b-4f9d-beaa-8a8339566599" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094054Z:aeb70132-583d-4b7a-98e1-cd67bc715fbd" + "CENTRALUS:20160319T122208Z:a6fd50ce-4e9b-4f9d-beaa-8a8339566599" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:40:53 GMT" + "Sat, 19 Mar 2016 12:22:07 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure/operationresults/944c09c4-578c-4897-98bf-6ab2fd581b6b?api-version=2015-11-10" + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure/operationresults/ba9fd66b-d5ea-450a-bc44-8604fc8d49ae?api-version=2015-11-10" ], "X-Powered-By": [ "ASP.NET" @@ -581,13 +759,13 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationJobs/944c09c4-578c-4897-98bf-6ab2fd581b6b?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkpvYnMvOTQ0YzA5YzQtNTc4Yy00ODk3LTk4YmYtNmFiMmZkNTgxYjZiP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/ba9fd66b-d5ea-450a-bc44-8604fc8d49ae?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uSm9icy9iYTlmZDY2Yi1kNWVhLTQ1MGEtYmM0NC04NjA0ZmM4ZDQ5YWU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4eb9028d-a349-459d-b7c8-3b5637605e96-2015-12-29 09:40:55Z-P" + "51a92c84-811d-44ff-958b-e778e68d1396-2016-03-19 12:22:09Z-P" ], "x-ms-version": [ "2015-01-01" @@ -596,10 +774,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationJobs/944c09c4-578c-4897-98bf-6ab2fd581b6b\",\r\n \"name\": \"944c09c4-578c-4897-98bf-6ab2fd581b6b\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4bc167c5-21b8-4930-b0e0-5c480fefd8d5-2015-12-29 09:40:53Z-P ActivityId: aeb70132-583d-4b7a-98e1-cd67bc715fbd\",\r\n \"scenarioName\": \"RemoveProtectionProfile\",\r\n \"friendlyName\": \"Remove the protection group\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"RemoveProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Remove the prerequisites check for the protection group\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveProtectionProfileTask\",\r\n \"name\": \"RemoveProtectionProfileTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing the protection group\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2015-12-29T09:40:53.968236Z\",\r\n \"allowedActions\": [\r\n \"Cancel\",\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"1bd7b074-46ae-4841-83be-b7fbf352b103\",\r\n \"targetObjectName\": \"ppAzure\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/ba9fd66b-d5ea-450a-bc44-8604fc8d49ae\",\r\n \"name\": \"ba9fd66b-d5ea-450a-bc44-8604fc8d49ae\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8b6382cc-d106-467a-8cbe-efb4dab38bd1-2016-03-19 12:22:07Z-P ActivityId: a6fd50ce-4e9b-4f9d-beaa-8a8339566599\",\r\n \"scenarioName\": \"RemoveProtectionProfile\",\r\n \"friendlyName\": \"Remove the protection group\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"RemoveProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2016-03-19T12:22:08.4932784Z\",\r\n \"endTime\": \"2016-03-19T12:22:08.5870685Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Remove the prerequisites check for the protection group\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveProtectionProfileTask\",\r\n \"name\": \"RemoveProtectionProfileTask\",\r\n \"startTime\": \"2016-03-19T12:22:08.5870685Z\",\r\n \"endTime\": \"2016-03-19T12:22:08.5870685Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing the protection group\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2016-03-19T12:22:07.6857928Z\",\r\n \"endTime\": \"2016-03-19T12:22:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"53365906-7dbc-44f7-9501-a3977023a97f\",\r\n \"targetObjectName\": \"ppAzure\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n },\r\n \"status\": \"Succeeded\",\r\n \"error\": null,\r\n \"startTime\": \"2016-03-19T12:22:07.6857928Z\",\r\n \"endTime\": \"2016-03-19T12:22:08Z\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1651" + "1881" ], "Content-Type": [ "application/json" @@ -611,7 +789,7 @@ "no-cache" ], "x-ms-request-id": [ - "4eb9028d-a349-459d-b7c8-3b5637605e96-2015-12-29 09:40:55Z-P 12/29/2015 9:40:55 AM" + "51a92c84-811d-44ff-958b-e778e68d1396-2016-03-19 12:22:09Z-P 3/19/2016 12:22:09 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -630,19 +808,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "4eb9028d-a349-459d-b7c8-3b5637605e96-2015-12-29 09:40:55Z-P" + "51a92c84-811d-44ff-958b-e778e68d1396-2016-03-19 12:22:09Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14987" ], "x-ms-correlation-request-id": [ - "a12562eb-2ce2-40ca-8877-0a2572f64ff2" + "1182b050-0f47-4569-9df5-1fa2be91a030" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T094055Z:a12562eb-2ce2-40ca-8877-0a2572f64ff2" + "CENTRALUS:20160319T122210Z:1182b050-0f47-4569-9df5-1fa2be91a030" ], "Date": [ - "Tue, 29 Dec 2015 09:40:55 GMT" + "Sat, 19 Mar 2016 12:22:09 GMT" ] }, "StatusCode": 200 @@ -650,6 +828,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDisableDR.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDisableDR.json new file mode 100644 index 000000000000..53afb82213ce --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDisableDR.json @@ -0,0 +1,2435 @@ +{ + "Entries": [ + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-request-id": [ + "2521b4fc-74fc-4915-a3fb-a1ed3b1fe8d0" + ], + "x-ms-correlation-request-id": [ + "2521b4fc-74fc-4915-a3fb-a1ed3b1fe8d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115103Z:2521b4fc-74fc-4915-a3fb-a1ed3b1fe8d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:03 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-request-id": [ + "099d50ee-5f59-4d6a-96ed-e7bd51e1bbba" + ], + "x-ms-correlation-request-id": [ + "099d50ee-5f59-4d6a-96ed-e7bd51e1bbba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115106Z:099d50ee-5f59-4d6a-96ed-e7bd51e1bbba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14827" + ], + "x-ms-request-id": [ + "1f5e18ed-e4a6-4f52-9674-3bc802f6ef63" + ], + "x-ms-correlation-request-id": [ + "1f5e18ed-e4a6-4f52-9674-3bc802f6ef63" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115109Z:1f5e18ed-e4a6-4f52-9674-3bc802f6ef63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14824" + ], + "x-ms-request-id": [ + "cf654dcb-d70c-492d-b2ae-525da9cb73d8" + ], + "x-ms-correlation-request-id": [ + "cf654dcb-d70c-492d-b2ae-525da9cb73d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115111Z:cf654dcb-d70c-492d-b2ae-525da9cb73d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14821" + ], + "x-ms-request-id": [ + "ab9a2fb3-17e5-4977-a577-106190b75355" + ], + "x-ms-correlation-request-id": [ + "ab9a2fb3-17e5-4977-a577-106190b75355" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115113Z:ab9a2fb3-17e5-4977-a577-106190b75355" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14818" + ], + "x-ms-request-id": [ + "dc83183c-dc05-4c78-82e4-3eb90bee507d" + ], + "x-ms-correlation-request-id": [ + "dc83183c-dc05-4c78-82e4-3eb90bee507d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115114Z:dc83183c-dc05-4c78-82e4-3eb90bee507d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14815" + ], + "x-ms-request-id": [ + "c53c87e4-560d-4d88-baf3-c9bbefcfaf47" + ], + "x-ms-correlation-request-id": [ + "c53c87e4-560d-4d88-baf3-c9bbefcfaf47" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115116Z:c53c87e4-560d-4d88-baf3-c9bbefcfaf47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" + ], + "x-ms-request-id": [ + "04ae2997-6ad2-4105-a8ba-a1685675b19e" + ], + "x-ms-correlation-request-id": [ + "04ae2997-6ad2-4105-a8ba-a1685675b19e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115118Z:04ae2997-6ad2-4105-a8ba-a1685675b19e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14809" + ], + "x-ms-request-id": [ + "2fbdd809-7dcf-444f-8318-2b8e7e1a29c0" + ], + "x-ms-correlation-request-id": [ + "2fbdd809-7dcf-444f-8318-2b8e7e1a29c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115119Z:2fbdd809-7dcf-444f-8318-2b8e7e1a29c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14806" + ], + "x-ms-request-id": [ + "8fd87719-66b5-44a5-83ee-3fecd6cc2708" + ], + "x-ms-correlation-request-id": [ + "8fd87719-66b5-44a5-83ee-3fecd6cc2708" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115121Z:8fd87719-66b5-44a5-83ee-3fecd6cc2708" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14803" + ], + "x-ms-request-id": [ + "9d880402-7605-4fa2-bbde-07fe43de6f12" + ], + "x-ms-correlation-request-id": [ + "9d880402-7605-4fa2-bbde-07fe43de6f12" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115123Z:9d880402-7605-4fa2-bbde-07fe43de6f12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14800" + ], + "x-ms-request-id": [ + "54032d5b-a00d-4205-9918-72790d43d9b6" + ], + "x-ms-correlation-request-id": [ + "54032d5b-a00d-4205-9918-72790d43d9b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115124Z:54032d5b-a00d-4205-9918-72790d43d9b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14797" + ], + "x-ms-request-id": [ + "dc32c501-4131-44e5-b2bd-54fef09196ca" + ], + "x-ms-correlation-request-id": [ + "dc32c501-4131-44e5-b2bd-54fef09196ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115126Z:dc32c501-4131-44e5-b2bd-54fef09196ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14795" + ], + "x-ms-request-id": [ + "afc727aa-aa50-4f5a-acef-880882227307" + ], + "x-ms-correlation-request-id": [ + "afc727aa-aa50-4f5a-acef-880882227307" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115128Z:afc727aa-aa50-4f5a-acef-880882227307" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e4015d3-2013-4632-ad85-f3d2fec9e5b9-2016-03-19 11:51:03Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b205d6ac-63b1-49ff-8d7c-3187bd2b188f" + ], + "x-ms-client-request-id": [ + "0e4015d3-2013-4632-ad85-f3d2fec9e5b9-2016-03-19 11:51:03Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "b205d6ac-63b1-49ff-8d7c-3187bd2b188f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115105Z:b205d6ac-63b1-49ff-8d7c-3187bd2b188f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c14a7c99-860c-4bc0-9aae-8b3e7c0c244c-2016-03-19 11:51:06Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "88facbd7-9b39-4a5d-992f-3e02387baebe" + ], + "x-ms-client-request-id": [ + "c14a7c99-860c-4bc0-9aae-8b3e7c0c244c-2016-03-19 11:51:06Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14829" + ], + "x-ms-correlation-request-id": [ + "88facbd7-9b39-4a5d-992f-3e02387baebe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115106Z:88facbd7-9b39-4a5d-992f-3e02387baebe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9b51615-ba77-4fce-a5d5-9abe3e39422e-2016-03-19 11:51:09Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c7c76044-4d64-4e4f-91ea-2152bf401960" + ], + "x-ms-client-request-id": [ + "e9b51615-ba77-4fce-a5d5-9abe3e39422e-2016-03-19 11:51:09Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14826" + ], + "x-ms-correlation-request-id": [ + "c7c76044-4d64-4e4f-91ea-2152bf401960" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115110Z:c7c76044-4d64-4e4f-91ea-2152bf401960" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:10 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7961fdc0-5da1-4c72-afc2-f5c39345e179-2016-03-19 11:51:11Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b5cdee6-7fc7-44b2-a818-f930b42a2104" + ], + "x-ms-client-request-id": [ + "7961fdc0-5da1-4c72-afc2-f5c39345e179-2016-03-19 11:51:11Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14823" + ], + "x-ms-correlation-request-id": [ + "1b5cdee6-7fc7-44b2-a818-f930b42a2104" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115112Z:1b5cdee6-7fc7-44b2-a818-f930b42a2104" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17b2d3a1-82b8-48d6-aa05-427aaa623a0d-2016-03-19 11:51:13Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "13b5c70a-89be-45bc-a9b8-6fb044de9569" + ], + "x-ms-client-request-id": [ + "17b2d3a1-82b8-48d6-aa05-427aaa623a0d-2016-03-19 11:51:13Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14820" + ], + "x-ms-correlation-request-id": [ + "13b5c70a-89be-45bc-a9b8-6fb044de9569" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115113Z:13b5c70a-89be-45bc-a9b8-6fb044de9569" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:13 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2523451a-1712-4445-a718-5b90d0f644a0-2016-03-19 11:51:14Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fbb3ceb7-29db-4d64-8f6b-0f61b5a2cb23" + ], + "x-ms-client-request-id": [ + "2523451a-1712-4445-a718-5b90d0f644a0-2016-03-19 11:51:14Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14817" + ], + "x-ms-correlation-request-id": [ + "fbb3ceb7-29db-4d64-8f6b-0f61b5a2cb23" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115115Z:fbb3ceb7-29db-4d64-8f6b-0f61b5a2cb23" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:14 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b84beb2-ba54-40e4-b10d-aec2018a487f-2016-03-19 11:51:16Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c1c3f4ed-2082-42b6-a194-4f71793e9132" + ], + "x-ms-client-request-id": [ + "6b84beb2-ba54-40e4-b10d-aec2018a487f-2016-03-19 11:51:16Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14814" + ], + "x-ms-correlation-request-id": [ + "c1c3f4ed-2082-42b6-a194-4f71793e9132" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115117Z:c1c3f4ed-2082-42b6-a194-4f71793e9132" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:17 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4192b2a1-06d7-4846-b881-6b834fa8c6b7-2016-03-19 11:51:18Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56538d41-82e7-4854-8737-1ecc7cac9609" + ], + "x-ms-client-request-id": [ + "4192b2a1-06d7-4846-b881-6b834fa8c6b7-2016-03-19 11:51:18Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14811" + ], + "x-ms-correlation-request-id": [ + "56538d41-82e7-4854-8737-1ecc7cac9609" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115118Z:56538d41-82e7-4854-8737-1ecc7cac9609" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:18 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c66f971f-3063-421f-bca3-69222578c10f-2016-03-19 11:51:19Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "419b785c-9624-4568-8fd3-770ad746cede" + ], + "x-ms-client-request-id": [ + "c66f971f-3063-421f-bca3-69222578c10f-2016-03-19 11:51:19Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "419b785c-9624-4568-8fd3-770ad746cede" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115120Z:419b785c-9624-4568-8fd3-770ad746cede" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d9e2f01-15ae-42e9-a53f-03f75e2d09d1-2016-03-19 11:51:21Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "af469ff3-3a44-48a6-97bc-66d892f54d77" + ], + "x-ms-client-request-id": [ + "5d9e2f01-15ae-42e9-a53f-03f75e2d09d1-2016-03-19 11:51:21Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14805" + ], + "x-ms-correlation-request-id": [ + "af469ff3-3a44-48a6-97bc-66d892f54d77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115122Z:af469ff3-3a44-48a6-97bc-66d892f54d77" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3641e2f5-0012-494b-a61c-f9ff6831135d-2016-03-19 11:51:23Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8cf60117-c96e-49ab-969b-c719e24acdec" + ], + "x-ms-client-request-id": [ + "3641e2f5-0012-494b-a61c-f9ff6831135d-2016-03-19 11:51:23Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14802" + ], + "x-ms-correlation-request-id": [ + "8cf60117-c96e-49ab-969b-c719e24acdec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115123Z:8cf60117-c96e-49ab-969b-c719e24acdec" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:23 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56cdaa0a-07e8-4d49-888e-617abcf404de-2016-03-19 11:51:25Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1ea848df-c5cf-4cc5-95b1-40afd89e4d19" + ], + "x-ms-client-request-id": [ + "56cdaa0a-07e8-4d49-888e-617abcf404de-2016-03-19 11:51:25Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14799" + ], + "x-ms-correlation-request-id": [ + "1ea848df-c5cf-4cc5-95b1-40afd89e4d19" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115125Z:1ea848df-c5cf-4cc5-95b1-40afd89e4d19" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d420a043-a34d-4b89-bc30-b2b3fe2217f3-2016-03-19 11:51:26Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c40b35e6-fe1e-439e-9d88-6f855baf0a29" + ], + "x-ms-client-request-id": [ + "d420a043-a34d-4b89-bc30-b2b3fe2217f3-2016-03-19 11:51:26Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14796" + ], + "x-ms-correlation-request-id": [ + "c40b35e6-fe1e-439e-9d88-6f855baf0a29" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115127Z:c40b35e6-fe1e-439e-9d88-6f855baf0a29" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:26 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "045160d1-4e80-474f-af50-8ab5fefd96a1-2016-03-19 11:51:28Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7a7f1c82-150b-4f37-96ce-c171e74c238b" + ], + "x-ms-client-request-id": [ + "045160d1-4e80-474f-af50-8ab5fefd96a1-2016-03-19 11:51:28Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14794" + ], + "x-ms-correlation-request-id": [ + "7a7f1c82-150b-4f37-96ce-c171e74c238b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115129Z:7a7f1c82-150b-4f37-96ce-c171e74c238b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:28 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "694672e4-512e-4b47-91be-52745e936242-2016-03-19 11:51:07Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"0701FCFCE38E6BA24DBFE0CEEAEE59A18ED279E9\",\r\n \"kekCertExpiryDate\": \"2019-03-17T17:51:50Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "808" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "694672e4-512e-4b47-91be-52745e936242-2016-03-19 11:51:07Z-P 3/19/2016 11:51:08 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "694672e4-512e-4b47-91be-52745e936242-2016-03-19 11:51:07Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14828" + ], + "x-ms-correlation-request-id": [ + "977519f9-bce5-49c9-9e0d-5dfc0ecd5c81" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115109Z:977519f9-bce5-49c9-9e0d-5dfc0ecd5c81" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6827f360-d408-4fd1-b3a9-bba19f45bbcf-2016-03-19 11:51:10Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"name\": \"9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_b67769bd_20468OE97116\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6827f360-d408-4fd1-b3a9-bba19f45bbcf-2016-03-19 11:51:10Z-P 3/19/2016 11:51:10 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "6827f360-d408-4fd1-b3a9-bba19f45bbcf-2016-03-19 11:51:10Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14825" + ], + "x-ms-correlation-request-id": [ + "4e6c2414-b5a6-4425-8a9d-e3e976a0dbb7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115111Z:4e6c2414-b5a6-4425-8a9d-e3e976a0dbb7" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b80304e-5349-4024-af3d-ecd64d8180ba-2016-03-19 11:51:12Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "695" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b80304e-5349-4024-af3d-ecd64d8180ba-2016-03-19 11:51:12Z-P 3/19/2016 11:51:12 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "2b80304e-5349-4024-af3d-ecd64d8180ba-2016-03-19 11:51:12Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14822" + ], + "x-ms-correlation-request-id": [ + "32828227-afe8-4509-8f8d-1a771c431b29" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115112Z:32828227-afe8-4509-8f8d-1a771c431b29" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d184051-1655-463d-8cb4-b53b5c0a49cd-2016-03-19 11:51:13Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings/ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"name\": \"ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"sourceFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"ppAzure\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8d184051-1655-463d-8cb4-b53b5c0a49cd-2016-03-19 11:51:13Z-P 3/19/2016 11:51:13 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "8d184051-1655-463d-8cb4-b53b5c0a49cd-2016-03-19 11:51:13Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14819" + ], + "x-ms-correlation-request-id": [ + "2e3174a0-f6af-4727-b79a-a35b8f854c13" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115114Z:2e3174a0-f6af-4727-b79a-a35b8f854c13" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5858b829-0b84-4f8c-bce8-0996aff0cc56-2016-03-19 11:51:15Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5858b829-0b84-4f8c-bce8-0996aff0cc56-2016-03-19 11:51:15Z-P 3/19/2016 11:51:15 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "5858b829-0b84-4f8c-bce8-0996aff0cc56-2016-03-19 11:51:15Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14816" + ], + "x-ms-correlation-request-id": [ + "312566df-4859-42f4-8a0f-97d3430f3a08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115116Z:312566df-4859-42f4-8a0f-97d3430f3a08" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ba6338f-167d-40aa-9e04-466c810c0e7b-2016-03-19 11:51:23Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3ba6338f-167d-40aa-9e04-466c810c0e7b-2016-03-19 11:51:23Z-P 3/19/2016 11:51:23 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "3ba6338f-167d-40aa-9e04-466c810c0e7b-2016-03-19 11:51:23Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14801" + ], + "x-ms-correlation-request-id": [ + "3247c009-0427-4a8d-9802-23096138d17b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115124Z:3247c009-0427-4a8d-9802-23096138d17b" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79d2afcf-0ca0-4075-8b67-94584abfb72b-2016-03-19 11:51:17Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f4c1b566-716e-475c-9183-33b10effd6d2\",\r\n \"generation\": \"0\",\r\n \"osDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 25,\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A.VHD\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems?api-version=2015-11-10&%24skipToken=ReplicationGroup%3aBegin\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1954" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "79d2afcf-0ca0-4075-8b67-94584abfb72b-2016-03-19 11:51:17Z-P 3/19/2016 11:51:17 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "79d2afcf-0ca0-4075-8b67-94584abfb72b-2016-03-19 11:51:17Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "2cc34117-735c-4b3d-9f3b-c1af645de5b4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115117Z:2cc34117-735c-4b3d-9f3b-c1af645de5b4" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems?api-version=2015-11-10&%24skipToken=ReplicationGroup:Begin", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcz9hcGktdmVyc2lvbj0yMDE1LTExLTEwJiUyNHNraXBUb2tlbj1SZXBsaWNhdGlvbkdyb3VwJTNhQmVnaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc30cf76-9038-4d16-94ec-48df3fc30b35-2016-03-19 11:51:18Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bc30cf76-9038-4d16-94ec-48df3fc30b35-2016-03-19 11:51:18Z-P 3/19/2016 11:51:18 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "bc30cf76-9038-4d16-94ec-48df3fc30b35-2016-03-19 11:51:18Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14810" + ], + "x-ms-correlation-request-id": [ + "07caf7b8-3963-40c4-9ec9-7107c278efd9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115119Z:07caf7b8-3963-40c4-9ec9-7107c278efd9" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcy9iZWI2MTE5Ni00YThmLTQ3ZTEtYTI2Yy0xN2M2MmZmZDQ2OGY/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b704d79-3974-4daf-9763-5ed7f14c4cb0-2016-03-19 11:51:20Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f4c1b566-716e-475c-9183-33b10effd6d2\",\r\n \"generation\": \"0\",\r\n \"osDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 25,\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A.VHD\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1497" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b704d79-3974-4daf-9763-5ed7f14c4cb0-2016-03-19 11:51:20Z-P 3/19/2016 11:51:20 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "7b704d79-3974-4daf-9763-5ed7f14c4cb0-2016-03-19 11:51:20Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-correlation-request-id": [ + "e9cadb57-3d50-465f-a176-d51a20955aba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115121Z:e9cadb57-3d50-465f-a176-d51a20955aba" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcy9iZWI2MTE5Ni00YThmLTQ3ZTEtYTI2Yy0xN2M2MmZmZDQ2OGY/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dee951d-df6c-4e61-94b1-696850fcd69a-2016-03-19 11:51:25Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f4c1b566-716e-475c-9183-33b10effd6d2\",\r\n \"generation\": \"0\",\r\n \"osDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 25,\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A.VHD\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1497" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6dee951d-df6c-4e61-94b1-696850fcd69a-2016-03-19 11:51:25Z-P 3/19/2016 11:51:25 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "6dee951d-df6c-4e61-94b1-696850fcd69a-2016-03-19 11:51:25Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14798" + ], + "x-ms-correlation-request-id": [ + "a57f3284-58d1-413c-9ffa-3e79b1d04b57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115126Z:a57f3284-58d1-413c-9ffa-3e79b1d04b57" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYmViNjExOTYtNGE4Zi00N2UxLWEyNmMtMTdjNjJmZmQ0NjhmP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee676ec0-b03f-4723-b6b2-1c6769d4f9f1-2016-03-19 11:51:22Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationRecoveryServicesProviders/e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"primaryFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"replicationHealthErrors\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"policyFriendlyName\": \"ppAzure\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f/recoveryPoints/\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVMDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A\",\r\n \"maxSizeMB\": \"25\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\"\r\n }\r\n ],\r\n \"recoveryAzureVMName\": \"vm1\",\r\n \"recoveryAzureVMSize\": \"Basic_A0\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\",\r\n \"lastReplicatedTime\": null,\r\n \"vmId\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"f7448d4e-e6a3-4b9a-a5b6-d36a82e72388\",\r\n \"vMSubnetName\": null,\r\n \"vMNetworkName\": \"00000000-0000-0000-0000-000000000000\",\r\n \"recoveryVMNetworkId\": null,\r\n \"recoveryVMSubnetName\": \"\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\"\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": null,\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"sourceVmRAMSizeInMB\": 32,\r\n \"sourceVmCPUCount\": 1\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4102" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ee676ec0-b03f-4723-b6b2-1c6769d4f9f1-2016-03-19 11:51:22Z-P 3/19/2016 11:51:22 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "ee676ec0-b03f-4723-b6b2-1c6769d4f9f1-2016-03-19 11:51:22Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14804" + ], + "x-ms-correlation-request-id": [ + "123fc728-7ae9-4e6b-b3d9-b4589aa2bf3d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115122Z:123fc728-7ae9-4e6b-b3d9-b4589aa2bf3d" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/ReplicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL1JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYmViNjExOTYtNGE4Zi00N2UxLWEyNmMtMTdjNjJmZmQ0NjhmP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1458384687189)\\/\",\"NotAfterTimestamp\":\"\\/Date(1458989487189)\\/\",\"ClientRequestId\":\"fd054348-2f90-4af7-b900-70c8c1045c9a-2016-03-19 11:51:27Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KKwRg2cWPsdCrwXV04vzre+TrqL9yAwd5wUSEtrGD44=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "x-ms-client-request-id": [ + "fd054348-2f90-4af7-b900-70c8c1045c9a-2016-03-19 11:51:27Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "30" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/03a3d3ed-2af4-4ccf-8827-3328f5c282c5?api-version=2015-11-10" + ], + "x-ms-request-id": [ + "fd054348-2f90-4af7-b900-70c8c1045c9a-2016-03-19 11:51:27Z-P 3/19/2016 11:51:27 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-client-request-id": [ + "fd054348-2f90-4af7-b900-70c8c1045c9a-2016-03-19 11:51:27Z-P" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "2dd1a69a-89c2-49e6-ac32-ca11d130902c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115128Z:2dd1a69a-89c2-49e6-ac32-ca11d130902c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:27 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f/operationresults/03a3d3ed-2af4-4ccf-8827-3328f5c282c5?api-version=2015-11-10" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/03a3d3ed-2af4-4ccf-8827-3328f5c282c5?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uSm9icy8wM2EzZDNlZC0yYWY0LTRjY2YtODgyNy0zMzI4ZjVjMjgyYzU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d28664a4-0131-45d9-a9c7-07ac71c3b6c9-2016-03-19 11:51:29Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/03a3d3ed-2af4-4ccf-8827-3328f5c282c5\",\r\n \"name\": \"03a3d3ed-2af4-4ccf-8827-3328f5c282c5\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fd054348-2f90-4af7-b900-70c8c1045c9a-2016-03-19 11:51:27Z-P ActivityId: 2dd1a69a-89c2-49e6-ac32-ca11d130902c\",\r\n \"scenarioName\": null,\r\n \"friendlyName\": null,\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"allowedActions\": [],\r\n \"targetObjectId\": null,\r\n \"targetObjectName\": null,\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n },\r\n \"status\": \"NotStarted\",\r\n \"error\": null,\r\n \"startTime\": null,\r\n \"endTime\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "827" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d28664a4-0131-45d9-a9c7-07ac71c3b6c9-2016-03-19 11:51:29Z-P 3/19/2016 11:51:29 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "d28664a4-0131-45d9-a9c7-07ac71c3b6c9-2016-03-19 11:51:29Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14793" + ], + "x-ms-correlation-request-id": [ + "0260ba0d-3253-489f-abfa-9506c758bef9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T115129Z:0260ba0d-3253-489f-abfa-9506c758bef9" + ], + "Date": [ + "Sat, 19 Mar 2016 11:51:29 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" + } +} \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDissociateProfile.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDissociateProfile.json index eb63954171b9..e40fe35ff8df 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDissociateProfile.json +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestDissociateProfile.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14999" ], "x-ms-request-id": [ - "09fe7b5b-a315-4b17-93a5-be7b7e1a6e12" + "457d3e65-0a57-4b41-8788-85eef0dfcfda" ], "x-ms-correlation-request-id": [ - "09fe7b5b-a315-4b17-93a5-be7b7e1a6e12" + "457d3e65-0a57-4b41-8788-85eef0dfcfda" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093913Z:09fe7b5b-a315-4b17-93a5-be7b7e1a6e12" + "CENTRALUS:20160319T121738Z:457d3e65-0a57-4b41-8788-85eef0dfcfda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:13 GMT" + "Sat, 19 Mar 2016 12:17:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14997" ], "x-ms-request-id": [ - "d2650c8b-d901-431c-a15a-6063d0f28316" + "30225ceb-dd69-4678-84ca-070fa876e1e1" ], "x-ms-correlation-request-id": [ - "d2650c8b-d901-431c-a15a-6063d0f28316" + "30225ceb-dd69-4678-84ca-070fa876e1e1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093915Z:d2650c8b-d901-431c-a15a-6063d0f28316" + "CENTRALUS:20160319T121740Z:30225ceb-dd69-4678-84ca-070fa876e1e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:14 GMT" + "Sat, 19 Mar 2016 12:17:39 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14995" ], "x-ms-request-id": [ - "9e48ecdf-ad65-42c4-9b45-dc891de68511" + "127d9e37-ae2a-4772-9aaf-85c31a1686a6" ], "x-ms-correlation-request-id": [ - "9e48ecdf-ad65-42c4-9b45-dc891de68511" + "127d9e37-ae2a-4772-9aaf-85c31a1686a6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093918Z:9e48ecdf-ad65-42c4-9b45-dc891de68511" + "CENTRALUS:20160319T121743Z:127d9e37-ae2a-4772-9aaf-85c31a1686a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:17 GMT" + "Sat, 19 Mar 2016 12:17:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -163,13 +163,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,16 +181,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14993" ], "x-ms-request-id": [ - "3c377902-8a6a-4f92-8b37-e83a2ea33ffb" + "0099892b-09f4-4a07-94ef-9c6c9a021d5c" ], "x-ms-correlation-request-id": [ - "3c377902-8a6a-4f92-8b37-e83a2ea33ffb" + "0099892b-09f4-4a07-94ef-9c6c9a021d5c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093920Z:3c377902-8a6a-4f92-8b37-e83a2ea33ffb" + "CENTRALUS:20160319T121745Z:0099892b-09f4-4a07-94ef-9c6c9a021d5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,14 +199,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:19 GMT" + "Sat, 19 Mar 2016 12:17:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -214,13 +214,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,16 +232,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14991" ], "x-ms-request-id": [ - "cdd1b93a-f170-4914-816c-88ee0223aeff" + "8bbdb2af-28d7-4c78-a70c-7f1fd1162cb4" ], "x-ms-correlation-request-id": [ - "cdd1b93a-f170-4914-816c-88ee0223aeff" + "8bbdb2af-28d7-4c78-a70c-7f1fd1162cb4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093921Z:cdd1b93a-f170-4914-816c-88ee0223aeff" + "CENTRALUS:20160319T121747Z:8bbdb2af-28d7-4c78-a70c-7f1fd1162cb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,14 +250,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:21 GMT" + "Sat, 19 Mar 2016 12:17:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -265,13 +265,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,16 +283,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14989" ], "x-ms-request-id": [ - "aee29ac3-e2ba-4468-8820-6994edec2115" + "492c0e17-aaf2-47f6-861f-a8c4e2712b18" ], "x-ms-correlation-request-id": [ - "aee29ac3-e2ba-4468-8820-6994edec2115" + "492c0e17-aaf2-47f6-861f-a8c4e2712b18" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093924Z:aee29ac3-e2ba-4468-8820-6994edec2115" + "CENTRALUS:20160319T121749Z:492c0e17-aaf2-47f6-861f-a8c4e2712b18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -301,14 +301,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:24 GMT" + "Sat, 19 Mar 2016 12:17:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,13 +316,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14987" ], "x-ms-request-id": [ - "8c841804-3571-4f27-a6a3-4d46a018dd5b" + "d7b60e04-34c8-4dbc-9e6a-1f00ede0e777" ], "x-ms-correlation-request-id": [ - "8c841804-3571-4f27-a6a3-4d46a018dd5b" + "d7b60e04-34c8-4dbc-9e6a-1f00ede0e777" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093925Z:8c841804-3571-4f27-a6a3-4d46a018dd5b" + "CENTRALUS:20160319T121750Z:d7b60e04-34c8-4dbc-9e6a-1f00ede0e777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,14 +352,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:25 GMT" + "Sat, 19 Mar 2016 12:17:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -367,13 +367,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,16 +385,67 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14985" + ], + "x-ms-request-id": [ + "0eb2aa16-215e-46df-94be-935be8ce8fbb" + ], + "x-ms-correlation-request-id": [ + "0eb2aa16-215e-46df-94be-935be8ce8fbb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T121752Z:0eb2aa16-215e-46df-94be-935be8ce8fbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 12:17:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" ], "x-ms-request-id": [ - "da165dbc-5cea-4b19-b84b-4dc89ec17aa8" + "41431bee-d2fd-4098-87aa-d1f737fac5e9" ], "x-ms-correlation-request-id": [ - "da165dbc-5cea-4b19-b84b-4dc89ec17aa8" + "41431bee-d2fd-4098-87aa-d1f737fac5e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093927Z:da165dbc-5cea-4b19-b84b-4dc89ec17aa8" + "CENTRALUS:20160319T121754Z:41431bee-d2fd-4098-87aa-d1f737fac5e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,14 +454,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:26 GMT" + "Sat, 19 Mar 2016 12:17:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -418,13 +469,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -436,16 +487,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14981" ], "x-ms-request-id": [ - "ab58e8b7-eb94-411e-ad55-39ae81446883" + "77ee4045-e8d0-4984-b338-f4c6c9b5fdc5" ], "x-ms-correlation-request-id": [ - "ab58e8b7-eb94-411e-ad55-39ae81446883" + "77ee4045-e8d0-4984-b338-f4c6c9b5fdc5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093929Z:ab58e8b7-eb94-411e-ad55-39ae81446883" + "CENTRALUS:20160319T121755Z:77ee4045-e8d0-4984-b338-f4c6c9b5fdc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -454,14 +505,14 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:29 GMT" + "Sat, 19 Mar 2016 12:17:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -469,13 +520,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/30oct\",\r\n \"name\": \"30oct\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RG1\",\r\n \"name\": \"aad207RG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2A\",\r\n \"name\": \"aad207RGE2A\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/aad207RGE2APPE\",\r\n \"name\": \"aad207RGE2APPE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group\",\r\n \"name\": \"Account10_Resource_Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf\",\r\n \"name\": \"adf\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11\",\r\n \"name\": \"amitbhat11\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices\",\r\n \"name\": \"CS-West-US-RecoveryServices\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"name\": \"RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG\",\r\n \"name\": \"testRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group\",\r\n \"name\": \"VS-Account101-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group\",\r\n \"name\": \"VS-Account11-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group\",\r\n \"name\": \"VS-Account676767-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group\",\r\n \"name\": \"VS-Account99-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group\",\r\n \"name\": \"VS-Account9-Group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4491" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -487,16 +538,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14979" ], "x-ms-request-id": [ - "23516e8b-4450-4e36-9980-5b872b49c49f" + "0c3f6974-1101-4d88-8499-ba54852b37e9" ], "x-ms-correlation-request-id": [ - "23516e8b-4450-4e36-9980-5b872b49c49f" + "0c3f6974-1101-4d88-8499-ba54852b37e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093931Z:23516e8b-4450-4e36-9980-5b872b49c49f" + "CENTRALUS:20160319T121759Z:0c3f6974-1101-4d88-8499-ba54852b37e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,31 +556,31 @@ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:31 GMT" + "Sat, 19 Mar 2016 12:17:59 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54556618-969e-4f7f-b34e-10aed125208b-2015-12-29 09:39:13Z-P" + "ee78f6d7-28c1-47d0-ba48-1bb4feedcf51-2016-03-19 12:17:38Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -541,28 +592,28 @@ "no-cache" ], "x-ms-request-id": [ - "185f6f50-009b-4df0-b14f-a92507ecece2" + "9ef57d14-9d73-4ea2-aa98-a37068f2cf94" ], "x-ms-client-request-id": [ - "54556618-969e-4f7f-b34e-10aed125208b-2015-12-29 09:39:13Z-P" + "ee78f6d7-28c1-47d0-ba48-1bb4feedcf51-2016-03-19 12:17:38Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14998" ], "x-ms-correlation-request-id": [ - "185f6f50-009b-4df0-b14f-a92507ecece2" + "9ef57d14-9d73-4ea2-aa98-a37068f2cf94" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093915Z:185f6f50-009b-4df0-b14f-a92507ecece2" + "CENTRALUS:20160319T121739Z:9ef57d14-9d73-4ea2-aa98-a37068f2cf94" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:14 GMT" + "Sat, 19 Mar 2016 12:17:39 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -571,25 +622,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99c73c32-099e-42a2-9322-c3a541dbf7ba-2015-12-29 09:39:15Z-P" + "0481f848-84a2-489f-b142-cbdd6ac91d44-2016-03-19 12:17:40Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -601,28 +652,28 @@ "no-cache" ], "x-ms-request-id": [ - "5173e080-083c-411c-9391-0cabea325c99" + "0d3ed6d8-c05f-4aa0-95c4-131095740327" ], "x-ms-client-request-id": [ - "99c73c32-099e-42a2-9322-c3a541dbf7ba-2015-12-29 09:39:15Z-P" + "0481f848-84a2-489f-b142-cbdd6ac91d44-2016-03-19 12:17:40Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14996" ], "x-ms-correlation-request-id": [ - "5173e080-083c-411c-9391-0cabea325c99" + "0d3ed6d8-c05f-4aa0-95c4-131095740327" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093916Z:5173e080-083c-411c-9391-0cabea325c99" + "CENTRALUS:20160319T121740Z:0d3ed6d8-c05f-4aa0-95c4-131095740327" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:16 GMT" + "Sat, 19 Mar 2016 12:17:39 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -631,25 +682,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe43ac2c-a5d4-4395-9ad0-914518fbb5f2-2015-12-29 09:39:18Z-P" + "afbdc832-65c7-47fd-8cb2-c1ead36412f4-2016-03-19 12:17:43Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -661,28 +712,28 @@ "no-cache" ], "x-ms-request-id": [ - "18818687-5955-4b41-8750-fa0153b492f5" + "71cfedb4-343a-4859-878f-92b2bfc90eb0" ], "x-ms-client-request-id": [ - "fe43ac2c-a5d4-4395-9ad0-914518fbb5f2-2015-12-29 09:39:18Z-P" + "afbdc832-65c7-47fd-8cb2-c1ead36412f4-2016-03-19 12:17:43Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14994" ], "x-ms-correlation-request-id": [ - "18818687-5955-4b41-8750-fa0153b492f5" + "71cfedb4-343a-4859-878f-92b2bfc90eb0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093919Z:18818687-5955-4b41-8750-fa0153b492f5" + "CENTRALUS:20160319T121744Z:71cfedb4-343a-4859-878f-92b2bfc90eb0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:18 GMT" + "Sat, 19 Mar 2016 12:17:43 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -691,25 +742,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2413972f-af17-4e2a-b721-2f8a9a5a1fc9-2015-12-29 09:39:19Z-P" + "c430f3d1-6341-4a4a-9b77-f7aa0235fdcb-2016-03-19 12:17:45Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -721,28 +772,28 @@ "no-cache" ], "x-ms-request-id": [ - "f9dc7dc6-5b95-4f1c-9c24-43ec3cc49ad6" + "cf379d6d-671e-4c67-95c7-5110fff7ff6d" ], "x-ms-client-request-id": [ - "2413972f-af17-4e2a-b721-2f8a9a5a1fc9-2015-12-29 09:39:19Z-P" + "c430f3d1-6341-4a4a-9b77-f7aa0235fdcb-2016-03-19 12:17:45Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14992" ], "x-ms-correlation-request-id": [ - "f9dc7dc6-5b95-4f1c-9c24-43ec3cc49ad6" + "cf379d6d-671e-4c67-95c7-5110fff7ff6d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093920Z:f9dc7dc6-5b95-4f1c-9c24-43ec3cc49ad6" + "CENTRALUS:20160319T121746Z:cf379d6d-671e-4c67-95c7-5110fff7ff6d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:19 GMT" + "Sat, 19 Mar 2016 12:17:46 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -751,25 +802,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69a44c33-39de-462f-9e5e-2cd1a202c658-2015-12-29 09:39:21Z-P" + "8fc2d982-dfcc-410a-ab64-4de43a6f46f7-2016-03-19 12:17:47Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -781,28 +832,28 @@ "no-cache" ], "x-ms-request-id": [ - "7a419c67-71cf-481e-ac23-daff8c464108" + "b0fb3342-01b8-4afc-a846-e608cd9e32f6" ], "x-ms-client-request-id": [ - "69a44c33-39de-462f-9e5e-2cd1a202c658-2015-12-29 09:39:21Z-P" + "8fc2d982-dfcc-410a-ab64-4de43a6f46f7-2016-03-19 12:17:47Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14990" ], "x-ms-correlation-request-id": [ - "7a419c67-71cf-481e-ac23-daff8c464108" + "b0fb3342-01b8-4afc-a846-e608cd9e32f6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093922Z:7a419c67-71cf-481e-ac23-daff8c464108" + "CENTRALUS:20160319T121747Z:b0fb3342-01b8-4afc-a846-e608cd9e32f6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:21 GMT" + "Sat, 19 Mar 2016 12:17:47 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -811,25 +862,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a003ef3c-7329-4ab5-9a6c-a8334a1fa0b7-2015-12-29 09:39:23Z-P" + "f8227497-163f-4a43-a3e0-8dc0ab0de8a7-2016-03-19 12:17:49Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -841,28 +892,28 @@ "no-cache" ], "x-ms-request-id": [ - "54655128-30c2-4ee0-8a58-f4bd5e83dbad" + "015c3f8c-f09f-4af9-9a0f-827492f0cd59" ], "x-ms-client-request-id": [ - "a003ef3c-7329-4ab5-9a6c-a8334a1fa0b7-2015-12-29 09:39:23Z-P" + "f8227497-163f-4a43-a3e0-8dc0ab0de8a7-2016-03-19 12:17:49Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14988" ], "x-ms-correlation-request-id": [ - "54655128-30c2-4ee0-8a58-f4bd5e83dbad" + "015c3f8c-f09f-4af9-9a0f-827492f0cd59" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093924Z:54655128-30c2-4ee0-8a58-f4bd5e83dbad" + "CENTRALUS:20160319T121749Z:015c3f8c-f09f-4af9-9a0f-827492f0cd59" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:24 GMT" + "Sat, 19 Mar 2016 12:17:49 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -871,25 +922,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "805f37f1-6117-44b9-8402-33d02d160169-2015-12-29 09:39:25Z-P" + "046ae022-14b1-44b5-8530-869964e9bae6-2016-03-19 12:17:50Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -901,28 +952,28 @@ "no-cache" ], "x-ms-request-id": [ - "e4e1a5b1-4b6e-4781-9465-9dd941ef6150" + "2a4c245d-28fe-4d2a-a755-c7a0b310829b" ], "x-ms-client-request-id": [ - "805f37f1-6117-44b9-8402-33d02d160169-2015-12-29 09:39:25Z-P" + "046ae022-14b1-44b5-8530-869964e9bae6-2016-03-19 12:17:50Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14986" ], "x-ms-correlation-request-id": [ - "e4e1a5b1-4b6e-4781-9465-9dd941ef6150" + "2a4c245d-28fe-4d2a-a755-c7a0b310829b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093926Z:e4e1a5b1-4b6e-4781-9465-9dd941ef6150" + "CENTRALUS:20160319T121751Z:2a4c245d-28fe-4d2a-a755-c7a0b310829b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:25 GMT" + "Sat, 19 Mar 2016 12:17:51 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -931,25 +982,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81c80d85-2b3c-4dbc-9b06-c09d3c501552-2015-12-29 09:39:27Z-P" + "f86f3690-9f27-4aa0-8d73-c6bb274a65f6-2016-03-19 12:17:52Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -961,28 +1012,88 @@ "no-cache" ], "x-ms-request-id": [ - "43f2023b-c0a1-4aaa-ae3a-1f27c33b7813" + "d3d84477-9805-4e21-af66-e9d811c06e5b" ], "x-ms-client-request-id": [ - "81c80d85-2b3c-4dbc-9b06-c09d3c501552-2015-12-29 09:39:27Z-P" + "f86f3690-9f27-4aa0-8d73-c6bb274a65f6-2016-03-19 12:17:52Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14984" + ], + "x-ms-correlation-request-id": [ + "d3d84477-9805-4e21-af66-e9d811c06e5b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T121753Z:d3d84477-9805-4e21-af66-e9d811c06e5b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 12:17:52 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b33e43e-2522-4f50-8841-59d2210a4e34-2016-03-19 12:17:54Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4681b8e3-a0ec-4afb-a9fe-c230fc934b45" + ], + "x-ms-client-request-id": [ + "8b33e43e-2522-4f50-8841-59d2210a4e34-2016-03-19 12:17:54Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" ], "x-ms-correlation-request-id": [ - "43f2023b-c0a1-4aaa-ae3a-1f27c33b7813" + "4681b8e3-a0ec-4afb-a9fe-c230fc934b45" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093928Z:43f2023b-c0a1-4aaa-ae3a-1f27c33b7813" + "CENTRALUS:20160319T121754Z:4681b8e3-a0ec-4afb-a9fe-c230fc934b45" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:28 GMT" + "Sat, 19 Mar 2016 12:17:54 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -991,25 +1102,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2464785a-df28-42c9-bab0-61195ce2ea61-2015-12-29 09:39:28Z-P" + "12d69532-f815-4e37-9b7c-64bdfcb3cb63-2016-03-19 12:17:55Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -1021,28 +1132,28 @@ "no-cache" ], "x-ms-request-id": [ - "ad81c0cf-b139-4a56-9ab2-aa74853e97aa" + "283bb3a9-7a2a-42aa-8d50-1905bc74c3aa" ], "x-ms-client-request-id": [ - "2464785a-df28-42c9-bab0-61195ce2ea61-2015-12-29 09:39:28Z-P" + "12d69532-f815-4e37-9b7c-64bdfcb3cb63-2016-03-19 12:17:55Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14980" ], "x-ms-correlation-request-id": [ - "ad81c0cf-b139-4a56-9ab2-aa74853e97aa" + "283bb3a9-7a2a-42aa-8d50-1905bc74c3aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093929Z:ad81c0cf-b139-4a56-9ab2-aa74853e97aa" + "CENTRALUS:20160319T121756Z:283bb3a9-7a2a-42aa-8d50-1905bc74c3aa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:29 GMT" + "Sat, 19 Mar 2016 12:17:55 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1051,25 +1162,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95c5c15b-756c-4c7f-89bf-358be1f17ee0-2015-12-29 09:39:31Z-P" + "7d835ad6-ddb5-471b-9276-94b7a6ed35e9-2016-03-19 12:17:59Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"b2aRecoveryServicesVaultbvt\",\r\n \"etag\": \"18673013-5a4e-4062-9366-f65b103ea49c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/b2aRecoveryServicesVaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt\",\r\n \"etag\": \"87a3f302-8eee-4ee5-90d5-20b3b0aa399c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt121520152\",\r\n \"etag\": \"435a99d6-d473-44b7-a782-cf9efd5bf90d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt121520152\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2arecovertservicesvaultbvt12292015\",\r\n \"etag\": \"1e28d528-27c0-4293-9de2-8f9d0a0a8146\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2arecovertservicesvaultbvt12292015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ebvtvaultrs\",\r\n \"etag\": \"2926e042-1765-4c52-909f-b10380638200\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ebvtvaultrs\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt\",\r\n \"etag\": \"0231710e-b5a3-4da8-a92d-8bacc3cc6848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"e2ersvaultbvt12212015\",\r\n \"etag\": \"4593d055-5dfe-4758-b698-a907cc8728b7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/e2ersvaultbvt12212015\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"nvault1\",\r\n \"etag\": \"18e9f60b-38d4-4d7a-8e57-52a5e91d4539\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2awestus\",\r\n \"etag\": \"e3e260d0-490f-454b-a713-d4bb6f4c2903\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2awestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"RSbvtvaultfore2ewestus\",\r\n \"etag\": \"a6e6dd90-3bc8-4b93-acd1-43904e1efe83\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/RSbvtvaultfore2ewestus\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"test234\",\r\n \"etag\": \"06fa0d3a-1d27-40a7-a396-1745542a2b07\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/test234\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westeurope\",\r\n \"name\": \"TestVault\",\r\n \"etag\": \"2b79d696-630d-4922-b2f4-9ac611a06271\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults/TestVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"xyz1\",\r\n \"etag\": \"57cff9a5-3f88-4920-a5f0-0728aa406ea1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/xyz1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "5844" + "409" ], "Content-Type": [ "application/json" @@ -1081,43 +1192,110 @@ "no-cache" ], "x-ms-request-id": [ - "a2c3242b-3b30-4320-9665-f0005ba1bd08" + "4ae4f664-c09d-4a17-a2e2-340aa17ce51b" ], "x-ms-client-request-id": [ - "95c5c15b-756c-4c7f-89bf-358be1f17ee0-2015-12-29 09:39:31Z-P" + "7d835ad6-ddb5-471b-9276-94b7a6ed35e9-2016-03-19 12:17:59Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14978" ], "x-ms-correlation-request-id": [ - "a2c3242b-3b30-4320-9665-f0005ba1bd08" + "4ae4f664-c09d-4a17-a2e2-340aa17ce51b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093932Z:a2c3242b-3b30-4320-9665-f0005ba1bd08" + "CENTRALUS:20160319T121759Z:4ae4f664-c09d-4a17-a2e2-340aa17ce51b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:31 GMT" + "Sat, 19 Mar 2016 12:17:59 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a97d3a52-89e7-4cea-8007-7e1e9366d9d7-2016-03-19 12:17:40Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"0701FCFCE38E6BA24DBFE0CEEAEE59A18ED279E9\",\r\n \"kekCertExpiryDate\": \"2019-03-17T17:51:50Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "808" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a97d3a52-89e7-4cea-8007-7e1e9366d9d7-2016-03-19 12:17:40Z-P 3/19/2016 12:17:42 PM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Server": [ + "Microsoft-IIS/8.0", "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "a97d3a52-89e7-4cea-8007-7e1e9366d9d7-2016-03-19 12:17:40Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "4afcb8ba-20f7-4624-8662-cef58866fec8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T121743Z:4afcb8ba-20f7-4624-8662-cef58866fec8" + ], + "Date": [ + "Sat, 19 Mar 2016 12:17:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c63a4586-70a4-44e7-a20a-3d36e9afeeee-2015-12-29 09:39:16Z-P" + "df838f6e-1f08-4094-82e3-24a9b297d0f6-2016-03-19 12:17:44Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1126,10 +1304,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"B2asite1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2asite1\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"name\": \"9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_b67769bd_20468OE97116\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "580" + "1415" ], "Content-Type": [ "application/json" @@ -1141,7 +1319,7 @@ "no-cache" ], "x-ms-request-id": [ - "c63a4586-70a4-44e7-a20a-3d36e9afeeee-2015-12-29 09:39:16Z-P 12/29/2015 9:39:17 AM" + "df838f6e-1f08-4094-82e3-24a9b297d0f6-2016-03-19 12:17:44Z-P 3/19/2016 12:17:44 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1160,31 +1338,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "c63a4586-70a4-44e7-a20a-3d36e9afeeee-2015-12-29 09:39:16Z-P" + "df838f6e-1f08-4094-82e3-24a9b297d0f6-2016-03-19 12:17:44Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14998" ], "x-ms-correlation-request-id": [ - "c00694a5-9cc7-4a47-afee-0544e02067db" + "8804cdc3-13d6-4b95-ad6d-f6a85e454a6b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093918Z:c00694a5-9cc7-4a47-afee-0544e02067db" + "CENTRALUS:20160319T121745Z:8804cdc3-13d6-4b95-ad6d-f6a85e454a6b" ], "Date": [ - "Tue, 29 Dec 2015 09:39:17 GMT" + "Sat, 19 Mar 2016 12:17:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ba2918c-2852-4377-be0d-20433c9595c8-2015-12-29 09:39:18Z-P" + "ca2c8e72-083c-4b67-9521-8fbe0bc077c0-2016-03-19 12:17:46Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1193,10 +1371,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"name\": \"cloud_4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"B2asite1\",\r\n \"friendlyName\": \"B2asite1\",\r\n \"fabricType\": \"HyperVSite\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "629" + "695" ], "Content-Type": [ "application/json" @@ -1208,7 +1386,7 @@ "no-cache" ], "x-ms-request-id": [ - "2ba2918c-2852-4377-be0d-20433c9595c8-2015-12-29 09:39:18Z-P 12/29/2015 9:39:19 AM" + "ca2c8e72-083c-4b67-9521-8fbe0bc077c0-2016-03-19 12:17:46Z-P 3/19/2016 12:17:46 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1227,31 +1405,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "2ba2918c-2852-4377-be0d-20433c9595c8-2015-12-29 09:39:18Z-P" + "ca2c8e72-083c-4b67-9521-8fbe0bc077c0-2016-03-19 12:17:46Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14997" ], "x-ms-correlation-request-id": [ - "5e1f22ef-afc1-4371-8478-56c56411ea09" + "672f9fc8-4340-45c0-ac51-a20b9f5ad8b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093919Z:5e1f22ef-afc1-4371-8478-56c56411ea09" + "CENTRALUS:20160319T121746Z:672f9fc8-4340-45c0-ac51-a20b9f5ad8b9" ], "Date": [ - "Tue, 29 Dec 2015 09:39:18 GMT" + "Sat, 19 Mar 2016 12:17:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF80MzI5ZDQ5ZS0yZjk3LTQ1NTItYjc2NC00OTRhMzJkMjQ1MGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb01455f-f4e9-4f02-97ff-7c6d9c35d90f-2015-12-29 09:39:20Z-P" + "3cedd873-edf9-4aac-8507-cdaf814094dc-2016-03-19 12:17:47Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1260,10 +1438,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings/ContainerMapping_f574b128-fdc0-4284-94e0-8829e08d32f0\",\r\n \"name\": \"ContainerMapping_f574b128-fdc0-4284-94e0-8829e08d32f0\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"B2asite1\",\r\n \"sourceFabricFriendlyName\": \"B2asite1\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"ppAzure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings/ContainerMapping_dde68cc5-9421-45df-b6e1-20b57fa56fc8\",\r\n \"name\": \"ContainerMapping_dde68cc5-9421-45df-b6e1-20b57fa56fc8\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"B2asite1\",\r\n \"sourceFabricFriendlyName\": \"B2asite1\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"pptest\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings/ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"name\": \"ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"sourceFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"ppAzure\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "2255" + "1320" ], "Content-Type": [ "application/json" @@ -1275,7 +1453,7 @@ "no-cache" ], "x-ms-request-id": [ - "cb01455f-f4e9-4f02-97ff-7c6d9c35d90f-2015-12-29 09:39:20Z-P 12/29/2015 9:39:21 AM" + "3cedd873-edf9-4aac-8507-cdaf814094dc-2016-03-19 12:17:47Z-P 3/19/2016 12:17:48 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1294,31 +1472,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "cb01455f-f4e9-4f02-97ff-7c6d9c35d90f-2015-12-29 09:39:20Z-P" + "3cedd873-edf9-4aac-8507-cdaf814094dc-2016-03-19 12:17:47Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14996" ], "x-ms-correlation-request-id": [ - "e3e715ea-6888-458c-b5a9-431f52065e0a" + "84df1c5e-7af4-4447-a29c-251bef913a00" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093921Z:e3e715ea-6888-458c-b5a9-431f52065e0a" + "CENTRALUS:20160319T121748Z:84df1c5e-7af4-4447-a29c-251bef913a00" ], "Date": [ - "Tue, 29 Dec 2015 09:39:21 GMT" + "Sat, 19 Mar 2016 12:17:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF80MzI5ZDQ5ZS0yZjk3LTQ1NTItYjc2NC00OTRhMzJkMjQ1MGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "206c9ba4-4401-49ab-8766-8252c2b572e2-2015-12-29 09:39:27Z-P" + "fa43535d-08c5-4697-bd21-98e87c34fd14-2016-03-19 12:17:54Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1327,10 +1505,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings/ContainerMapping_f574b128-fdc0-4284-94e0-8829e08d32f0\",\r\n \"name\": \"ContainerMapping_f574b128-fdc0-4284-94e0-8829e08d32f0\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"B2asite1\",\r\n \"sourceFabricFriendlyName\": \"B2asite1\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"ppAzure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings/ContainerMapping_dde68cc5-9421-45df-b6e1-20b57fa56fc8\",\r\n \"name\": \"ContainerMapping_dde68cc5-9421-45df-b6e1-20b57fa56fc8\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"B2asite1\",\r\n \"sourceFabricFriendlyName\": \"B2asite1\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"pptest\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings/ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"name\": \"ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"sourceFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"ppAzure\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "2255" + "1320" ], "Content-Type": [ "application/json" @@ -1342,7 +1520,7 @@ "no-cache" ], "x-ms-request-id": [ - "206c9ba4-4401-49ab-8766-8252c2b572e2-2015-12-29 09:39:27Z-P 12/29/2015 9:39:28 AM" + "fa43535d-08c5-4697-bd21-98e87c34fd14-2016-03-19 12:17:54Z-P 3/19/2016 12:17:54 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1361,31 +1539,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "206c9ba4-4401-49ab-8766-8252c2b572e2-2015-12-29 09:39:27Z-P" + "fa43535d-08c5-4697-bd21-98e87c34fd14-2016-03-19 12:17:54Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14992" ], "x-ms-correlation-request-id": [ - "e6a3d395-74a4-47a6-82e6-20da67babe72" + "58bba1f2-85be-485e-9bcc-62b2a2373b29" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093928Z:e6a3d395-74a4-47a6-82e6-20da67babe72" + "CENTRALUS:20160319T121755Z:58bba1f2-85be-485e-9bcc-62b2a2373b29" ], "Date": [ - "Tue, 29 Dec 2015 09:39:28 GMT" + "Sat, 19 Mar 2016 12:17:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "584c8519-99d3-4883-a427-205cfc150c50-2015-12-29 09:39:22Z-P" + "6f575710-0841-4ae7-ad14-4aa90a8ebbac-2016-03-19 12:17:49Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1394,10 +1572,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/b2astorageversion1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "697" + "672" ], "Content-Type": [ "application/json" @@ -1409,7 +1587,7 @@ "no-cache" ], "x-ms-request-id": [ - "584c8519-99d3-4883-a427-205cfc150c50-2015-12-29 09:39:22Z-P 12/29/2015 9:39:23 AM" + "6f575710-0841-4ae7-ad14-4aa90a8ebbac-2016-03-19 12:17:49Z-P 3/19/2016 12:17:49 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,31 +1606,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "584c8519-99d3-4883-a427-205cfc150c50-2015-12-29 09:39:22Z-P" + "6f575710-0841-4ae7-ad14-4aa90a8ebbac-2016-03-19 12:17:49Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14995" ], "x-ms-correlation-request-id": [ - "0125725d-e33b-4fea-96d7-e4253413b1ac" + "f0ffb652-c59a-48da-a89e-30a20b06c0fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093923Z:0125725d-e33b-4fea-96d7-e4253413b1ac" + "CENTRALUS:20160319T121750Z:f0ffb652-c59a-48da-a89e-30a20b06c0fc" ], "Date": [ - "Tue, 29 Dec 2015 09:39:23 GMT" + "Sat, 19 Mar 2016 12:17:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwdGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efce3fcb-2353-40e3-a434-117c29552a4c-2015-12-29 09:39:24Z-P" + "36d310e3-0adc-4d99-ba39-b882c6495f19-2016-03-19 12:17:53Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1461,10 +1639,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"name\": \"pptest\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"pptest\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "663" + "672" ], "Content-Type": [ "application/json" @@ -1476,7 +1654,7 @@ "no-cache" ], "x-ms-request-id": [ - "efce3fcb-2353-40e3-a434-117c29552a4c-2015-12-29 09:39:24Z-P 12/29/2015 9:39:24 AM" + "36d310e3-0adc-4d99-ba39-b882c6495f19-2016-03-19 12:17:53Z-P 3/19/2016 12:17:52 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1495,31 +1673,31 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "efce3fcb-2353-40e3-a434-117c29552a4c-2015-12-29 09:39:24Z-P" + "36d310e3-0adc-4d99-ba39-b882c6495f19-2016-03-19 12:17:53Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14993" ], "x-ms-correlation-request-id": [ - "1b2b1ea3-3c11-419d-8194-992020c52cf0" + "cbf26345-2164-4cfc-90a1-4198dc36a537" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093925Z:1b2b1ea3-3c11-419d-8194-992020c52cf0" + "CENTRALUS:20160319T121753Z:cbf26345-2164-4cfc-90a1-4198dc36a537" ], "Date": [ - "Tue, 29 Dec 2015 09:39:24 GMT" + "Sat, 19 Mar 2016 12:17:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2546865d-0be7-48b9-9e68-6c06788df28d-2015-12-29 09:39:26Z-P" + "20016d25-03da-4248-b417-9fe3fc511a1c-2016-03-19 12:17:51Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1528,10 +1706,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest\",\r\n \"name\": \"pptest\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"pptest\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/b2astorageversion1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "700" ], "Content-Type": [ "application/json" @@ -1543,7 +1721,7 @@ "no-cache" ], "x-ms-request-id": [ - "2546865d-0be7-48b9-9e68-6c06788df28d-2015-12-29 09:39:26Z-P 12/29/2015 9:39:26 AM" + "20016d25-03da-4248-b417-9fe3fc511a1c-2016-03-19 12:17:51Z-P 3/19/2016 12:17:51 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1562,26 +1740,26 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "2546865d-0be7-48b9-9e68-6c06788df28d-2015-12-29 09:39:26Z-P" + "20016d25-03da-4248-b417-9fe3fc511a1c-2016-03-19 12:17:51Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14994" ], "x-ms-correlation-request-id": [ - "5c0afa30-375b-440a-9500-b779532d64c7" + "a3e62461-6033-4e73-af17-f089acf1b215" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093927Z:5c0afa30-375b-440a-9500-b779532d64c7" + "CENTRALUS:20160319T121752Z:a3e62461-6033-4e73-af17-f089acf1b215" ], "Date": [ - "Tue, 29 Dec 2015 09:39:27 GMT" + "Sat, 19 Mar 2016 12:17:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings/ContainerMapping_f574b128-fdc0-4284-94e0-8829e08d32f0/remove?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF80MzI5ZDQ5ZS0yZjk3LTQ1NTItYjc2NC00OTRhMzJkMjQ1MGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQ29udGFpbmVyTWFwcGluZ19mNTc0YjEyOC1mZGMwLTQyODQtOTRlMC04ODI5ZTA4ZDMyZjAvcmVtb3ZlP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings/ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682/remove?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzL0NvbnRhaW5lck1hcHBpbmdfcHBhenVyZV8xNTMxM2JiMmVjZGM3ZTM3YTMwZWZiNWEyNTdkYjBkOTkyNWUzYTJlYzllNjgxZjI4NGEyMWViYmQyZjljNjgyL3JlbW92ZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {}\r\n }\r\n}", "RequestHeaders": { @@ -1592,10 +1770,10 @@ "61" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1451378369493)\\/\",\"NotAfterTimestamp\":\"\\/Date(1451983169493)\\/\",\"ClientRequestId\":\"ae09f89b-6429-4826-98db-4d5b3a664e62-2015-12-29 09:39:29Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sruQAhLuYwc/WiSM1vT6GK/L7B6yFvt5FJY7dBrVxKo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1458386276469)\\/\",\"NotAfterTimestamp\":\"\\/Date(1458991076469)\\/\",\"ClientRequestId\":\"06f7b444-2ef9-4eb0-b3d9-f6b9b5748949-2016-03-19 12:17:56Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UqBUs4Ou0KxjiVWDB3TmeFNsQHYM1VqclEJMRhLNQyo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "x-ms-client-request-id": [ - "ae09f89b-6429-4826-98db-4d5b3a664e62-2015-12-29 09:39:29Z-P" + "06f7b444-2ef9-4eb0-b3d9-f6b9b5748949-2016-03-19 12:17:56Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1619,34 +1797,34 @@ "30" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/Jobs/136e913b-84aa-4856-bf4e-93ab1574c1d7?api-version=2015-11-10" + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/5904b3da-94fb-4f7f-ba91-51a1ed2571e4?api-version=2015-11-10" ], "x-ms-request-id": [ - "ae09f89b-6429-4826-98db-4d5b3a664e62-2015-12-29 09:39:29Z-P 12/29/2015 9:39:30 AM" + "06f7b444-2ef9-4eb0-b3d9-f6b9b5748949-2016-03-19 12:17:56Z-P 3/19/2016 12:17:58 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-client-request-id": [ - "ae09f89b-6429-4826-98db-4d5b3a664e62-2015-12-29 09:39:29Z-P" + "06f7b444-2ef9-4eb0-b3d9-f6b9b5748949-2016-03-19 12:17:56Z-P" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "e14be870-dd8e-4d71-a46b-b2d6b3c5f0aa" + "a4139840-5c4c-4e26-9789-15ab5089bfef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093931Z:e14be870-dd8e-4d71-a46b-b2d6b3c5f0aa" + "CENTRALUS:20160319T121758Z:a4139840-5c4c-4e26-9789-15ab5089bfef" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:39:31 GMT" + "Sat, 19 Mar 2016 12:17:58 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers/cloud_4329d49e-2f97-4552-b764-494a32d2450e/replicationProtectionContainerMappings/ContainerMapping_f574b128-fdc0-4284-94e0-8829e08d32f0/operationresults/136e913b-84aa-4856-bf4e-93ab1574c1d7?api-version=2015-11-10" + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings/ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682/operationresults/5904b3da-94fb-4f7f-ba91-51a1ed2571e4?api-version=2015-11-10" ], "X-Powered-By": [ "ASP.NET" @@ -1655,13 +1833,13 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationJobs/136e913b-84aa-4856-bf4e-93ab1574c1d7?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkpvYnMvMTM2ZTkxM2ItODRhYS00ODU2LWJmNGUtOTNhYjE1NzRjMWQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/5904b3da-94fb-4f7f-ba91-51a1ed2571e4?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uSm9icy81OTA0YjNkYS05NGZiLTRmN2YtYmE5MS01MWExZWQyNTcxZTQ/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a71dc18-26a0-4271-942b-d3b9f961f5d4-2015-12-29 09:39:31Z-P" + "c6884c5d-4ca1-4a7c-a261-70362fc2291d-2016-03-19 12:17:59Z-P" ], "x-ms-version": [ "2015-01-01" @@ -1670,10 +1848,10 @@ "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationJobs/136e913b-84aa-4856-bf4e-93ab1574c1d7\",\r\n \"name\": \"136e913b-84aa-4856-bf4e-93ab1574c1d7\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ae09f89b-6429-4826-98db-4d5b3a664e62-2015-12-29 09:39:29Z-P ActivityId: e14be870-dd8e-4d71-a46b-b2d6b3c5f0aa\",\r\n \"scenarioName\": \"DissociateProtectionProfile\",\r\n \"friendlyName\": \"Dissociate the protection group\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"1d6fd4c6-c011-4348-b8ff-fc7e7a331b95\",\r\n \"name\": \"CloudUnpairingPrerequisitesCheck\",\r\n \"startTime\": \"2015-12-29T09:39:31.4815838Z\",\r\n \"endTime\": \"2015-12-29T09:39:31.6222157Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for deleting the protection group\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"8f98df1d-c5f0-4b2a-abfb-9b1971074d7b\",\r\n \"name\": \"CloudUnpairingUnpairClouds\",\r\n \"startTime\": \"2015-12-29T09:39:31.7159611Z\",\r\n \"endTime\": \"2015-12-29T09:39:31.7472072Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Remove the protection configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"e449d7e0-d4fc-4d88-9eca-6e1884a0fd0b\",\r\n \"name\": \"CloudUnpairingCleanupClouds\",\r\n \"startTime\": \"2015-12-29T09:39:31.8253326Z\",\r\n \"endTime\": \"2015-12-29T09:39:31.9190839Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Clean up the protection configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"8bb9bb89-7630-467c-912c-41756cf13ffc\",\r\n \"name\": \"CloudUnpairingCleanupSite\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Clean up the configuration\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2015-12-29T09:39:30.5885766Z\",\r\n \"allowedActions\": [\r\n \"Cancel\",\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"1bd7b074-46ae-4841-83be-b7fbf352b103\",\r\n \"targetObjectName\": \"ppAzure\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryCloudId\": \"cloud_4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"PrimaryCloudName\": \"B2asite1\",\r\n \"RecoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"RecoveryCloudName\": \"Microsoft Azure\",\r\n \"PrimaryVmmId\": \"4329d49e-2f97-4552-b764-494a32d2450e\",\r\n \"PrimaryVmmName\": \"B2asite1\",\r\n \"RecoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"RecoveryVmmName\": \"Microsoft Azure\",\r\n \"PrimaryFabricProviderId\": \"dbb09c2b-5910-4f94-9ddf-a52acd89ac92\",\r\n \"RecoveryFabricProviderId\": \"a9186d68-0638-417e-9653-8fbb33eba96e\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/5904b3da-94fb-4f7f-ba91-51a1ed2571e4\",\r\n \"name\": \"5904b3da-94fb-4f7f-ba91-51a1ed2571e4\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"06f7b444-2ef9-4eb0-b3d9-f6b9b5748949-2016-03-19 12:17:56Z-P ActivityId: a4139840-5c4c-4e26-9789-15ab5089bfef\",\r\n \"scenarioName\": \"DissociateProtectionProfile\",\r\n \"friendlyName\": \"Dissociate the protection group\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"8c7d7cde-3f75-408e-a29e-76eab1a81475\",\r\n \"name\": \"CloudUnpairingPrerequisitesCheck\",\r\n \"startTime\": \"2016-03-19T12:17:58.5320094Z\",\r\n \"endTime\": \"2016-03-19T12:17:58.6882654Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for deleting the protection group\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"1fd7c411-7aef-42f3-8e9d-97471ad88618\",\r\n \"name\": \"CloudUnpairingUnpairClouds\",\r\n \"startTime\": \"2016-03-19T12:17:58.8913652Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Remove the protection configuration\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"63ea3eb1-61a9-4a1c-9bfa-a42c59322f3d\",\r\n \"name\": \"CloudUnpairingCleanupClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Clean up the protection configuration\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"4f6557b9-6f1a-47f4-9ac3-3ec4f6702002\",\r\n \"name\": \"CloudUnpairingCleanupSite\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Clean up the configuration\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2016-03-19T12:17:57.638478Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"53365906-7dbc-44f7-9501-a3977023a97f\",\r\n \"targetObjectName\": \"ppAzure\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryCloudId\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"PrimaryCloudName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"RecoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"RecoveryCloudName\": \"Microsoft Azure\",\r\n \"PrimaryVmmId\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"PrimaryVmmName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"RecoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"RecoveryVmmName\": \"Microsoft Azure\",\r\n \"PrimaryFabricProviderId\": \"VMM\",\r\n \"RecoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n },\r\n \"status\": \"InProgress\",\r\n \"error\": null,\r\n \"startTime\": \"2016-03-19T12:17:57.638478Z\",\r\n \"endTime\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "2911" + "3077" ], "Content-Type": [ "application/json" @@ -1685,7 +1863,7 @@ "no-cache" ], "x-ms-request-id": [ - "3a71dc18-26a0-4271-942b-d3b9f961f5d4-2015-12-29 09:39:31Z-P 12/29/2015 9:39:32 AM" + "c6884c5d-4ca1-4a7c-a261-70362fc2291d-2016-03-19 12:17:59Z-P 3/19/2016 12:17:59 PM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,19 +1882,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "3a71dc18-26a0-4271-942b-d3b9f961f5d4-2015-12-29 09:39:31Z-P" + "c6884c5d-4ca1-4a7c-a261-70362fc2291d-2016-03-19 12:17:59Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14991" ], "x-ms-correlation-request-id": [ - "1f33d45c-508f-47ad-b579-4ed06fa765e1" + "d217c259-aec4-466d-90c0-f99ef32fc909" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T093932Z:1f33d45c-508f-47ad-b579-4ed06fa765e1" + "CENTRALUS:20160319T121800Z:d217c259-aec4-466d-90c0-f99ef32fc909" ], "Date": [ - "Tue, 29 Dec 2015 09:39:32 GMT" + "Sat, 19 Mar 2016 12:18:00 GMT" ] }, "StatusCode": 200 @@ -1724,6 +1902,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestEnableDR.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestEnableDR.json new file mode 100644 index 000000000000..3da697f66cea --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestEnableDR.json @@ -0,0 +1,2263 @@ +{ + "Entries": [ + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-request-id": [ + "3a0e2665-13c9-4f7e-8216-0401d649905d" + ], + "x-ms-correlation-request-id": [ + "3a0e2665-13c9-4f7e-8216-0401d649905d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113228Z:3a0e2665-13c9-4f7e-8216-0401d649905d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14778" + ], + "x-ms-request-id": [ + "f15192dd-65b9-42f8-9066-01458ee3b574" + ], + "x-ms-correlation-request-id": [ + "f15192dd-65b9-42f8-9066-01458ee3b574" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113230Z:f15192dd-65b9-42f8-9066-01458ee3b574" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14776" + ], + "x-ms-request-id": [ + "5c84da2b-5936-46f9-9a88-111469b9ade2" + ], + "x-ms-correlation-request-id": [ + "5c84da2b-5936-46f9-9a88-111469b9ade2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113234Z:5c84da2b-5936-46f9-9a88-111469b9ade2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14774" + ], + "x-ms-request-id": [ + "54b85279-3d99-4aa6-a2fd-88dcb4eec26d" + ], + "x-ms-correlation-request-id": [ + "54b85279-3d99-4aa6-a2fd-88dcb4eec26d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113235Z:54b85279-3d99-4aa6-a2fd-88dcb4eec26d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14772" + ], + "x-ms-request-id": [ + "b647d832-be6b-4d7e-9a64-81763123b686" + ], + "x-ms-correlation-request-id": [ + "b647d832-be6b-4d7e-9a64-81763123b686" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113237Z:b647d832-be6b-4d7e-9a64-81763123b686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14770" + ], + "x-ms-request-id": [ + "b878fc2a-4ee6-4009-9d63-cf0ea52de1fc" + ], + "x-ms-correlation-request-id": [ + "b878fc2a-4ee6-4009-9d63-cf0ea52de1fc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113239Z:b878fc2a-4ee6-4009-9d63-cf0ea52de1fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14768" + ], + "x-ms-request-id": [ + "5d27effe-75d3-41db-89a9-647d37ceaa53" + ], + "x-ms-correlation-request-id": [ + "5d27effe-75d3-41db-89a9-647d37ceaa53" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113240Z:5d27effe-75d3-41db-89a9-647d37ceaa53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-request-id": [ + "55d22732-c205-4f08-85cc-d1b1308d258c" + ], + "x-ms-correlation-request-id": [ + "55d22732-c205-4f08-85cc-d1b1308d258c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113242Z:55d22732-c205-4f08-85cc-d1b1308d258c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-request-id": [ + "7cc18049-62af-4cee-a37b-c65216c84088" + ], + "x-ms-correlation-request-id": [ + "7cc18049-62af-4cee-a37b-c65216c84088" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113244Z:7cc18049-62af-4cee-a37b-c65216c84088" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14762" + ], + "x-ms-request-id": [ + "6764ebc2-2b08-4625-a422-6c1da56bc2a7" + ], + "x-ms-correlation-request-id": [ + "6764ebc2-2b08-4625-a422-6c1da56bc2a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113245Z:6764ebc2-2b08-4625-a422-6c1da56bc2a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14760" + ], + "x-ms-request-id": [ + "a0d12c0d-bf0a-4080-b7b5-24f4d1a3cfe4" + ], + "x-ms-correlation-request-id": [ + "a0d12c0d-bf0a-4080-b7b5-24f4d1a3cfe4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113247Z:a0d12c0d-bf0a-4080-b7b5-24f4d1a3cfe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14758" + ], + "x-ms-request-id": [ + "a7b83212-4c3a-4656-9631-7800cecee15c" + ], + "x-ms-correlation-request-id": [ + "a7b83212-4c3a-4656-9631-7800cecee15c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113249Z:a7b83212-4c3a-4656-9631-7800cecee15c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14756" + ], + "x-ms-request-id": [ + "05fdcfb0-13c8-4d2c-9e10-a05674bb0dbc" + ], + "x-ms-correlation-request-id": [ + "05fdcfb0-13c8-4d2c-9e10-a05674bb0dbc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113251Z:05fdcfb0-13c8-4d2c-9e10-a05674bb0dbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6697339-bf32-49c6-a47e-cebe38bb958b-2016-03-19 11:32:27Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6377bd9c-e89e-4c56-bfe8-9b37d50bbde2" + ], + "x-ms-client-request-id": [ + "c6697339-bf32-49c6-a47e-cebe38bb958b-2016-03-19 11:32:27Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14779" + ], + "x-ms-correlation-request-id": [ + "6377bd9c-e89e-4c56-bfe8-9b37d50bbde2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113230Z:6377bd9c-e89e-4c56-bfe8-9b37d50bbde2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:29 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78265db7-f959-4684-a1aa-154ba614244f-2016-03-19 11:32:29Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "03068af9-7c57-4675-9384-da5194732fc3" + ], + "x-ms-client-request-id": [ + "78265db7-f959-4684-a1aa-154ba614244f-2016-03-19 11:32:29Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14777" + ], + "x-ms-correlation-request-id": [ + "03068af9-7c57-4675-9384-da5194732fc3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113231Z:03068af9-7c57-4675-9384-da5194732fc3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:30 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85157e94-139c-4529-b12d-c7a6465cfc6d-2016-03-19 11:32:33Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e2893c05-7f09-4a11-901d-bbadf610f0a7" + ], + "x-ms-client-request-id": [ + "85157e94-139c-4529-b12d-c7a6465cfc6d-2016-03-19 11:32:33Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14775" + ], + "x-ms-correlation-request-id": [ + "e2893c05-7f09-4a11-901d-bbadf610f0a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113234Z:e2893c05-7f09-4a11-901d-bbadf610f0a7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:34 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57d0f49f-cfc9-456f-9554-6f16f2280c62-2016-03-19 11:32:34Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cf00ef3c-b297-4b24-89ce-7e2514b944ef" + ], + "x-ms-client-request-id": [ + "57d0f49f-cfc9-456f-9554-6f16f2280c62-2016-03-19 11:32:34Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14773" + ], + "x-ms-correlation-request-id": [ + "cf00ef3c-b297-4b24-89ce-7e2514b944ef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113236Z:cf00ef3c-b297-4b24-89ce-7e2514b944ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:36 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abee707e-22f0-4fc9-8e13-263791368149-2016-03-19 11:32:36Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95677135-af4b-4b04-b1b3-591edf276274" + ], + "x-ms-client-request-id": [ + "abee707e-22f0-4fc9-8e13-263791368149-2016-03-19 11:32:36Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14771" + ], + "x-ms-correlation-request-id": [ + "95677135-af4b-4b04-b1b3-591edf276274" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113238Z:95677135-af4b-4b04-b1b3-591edf276274" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:37 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54370d18-c532-4207-9448-1ecdb8b85f0a-2016-03-19 11:32:38Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f7317f7d-0b45-42bd-af17-e7a65bdc4c7d" + ], + "x-ms-client-request-id": [ + "54370d18-c532-4207-9448-1ecdb8b85f0a-2016-03-19 11:32:38Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14769" + ], + "x-ms-correlation-request-id": [ + "f7317f7d-0b45-42bd-af17-e7a65bdc4c7d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113239Z:f7317f7d-0b45-42bd-af17-e7a65bdc4c7d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c9ea0a6-62a7-45b4-987e-6a3108511bc8-2016-03-19 11:32:39Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5206a30c-3af2-4deb-a7de-f9d97dbdd783" + ], + "x-ms-client-request-id": [ + "7c9ea0a6-62a7-45b4-987e-6a3108511bc8-2016-03-19 11:32:39Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-correlation-request-id": [ + "5206a30c-3af2-4deb-a7de-f9d97dbdd783" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113241Z:5206a30c-3af2-4deb-a7de-f9d97dbdd783" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "244a87ad-a554-4d5d-a307-8bbfb51e1f67-2016-03-19 11:32:41Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8f37763d-312d-4775-8cc4-63cfb5441c2d" + ], + "x-ms-client-request-id": [ + "244a87ad-a554-4d5d-a307-8bbfb51e1f67-2016-03-19 11:32:41Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-correlation-request-id": [ + "8f37763d-312d-4775-8cc4-63cfb5441c2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113243Z:8f37763d-312d-4775-8cc4-63cfb5441c2d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:43 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47008496-4a61-4124-bf80-c76265a91407-2016-03-19 11:32:42Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "67226b61-8265-4c84-9bf5-1af75b2075c1" + ], + "x-ms-client-request-id": [ + "47008496-4a61-4124-bf80-c76265a91407-2016-03-19 11:32:42Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14763" + ], + "x-ms-correlation-request-id": [ + "67226b61-8265-4c84-9bf5-1af75b2075c1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113244Z:67226b61-8265-4c84-9bf5-1af75b2075c1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:44 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd7b89ad-116f-4b5f-acd1-299e8df2cffc-2016-03-19 11:32:44Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dbff584a-df9b-4f75-95aa-1c7f42d1caba" + ], + "x-ms-client-request-id": [ + "bd7b89ad-116f-4b5f-acd1-299e8df2cffc-2016-03-19 11:32:44Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14761" + ], + "x-ms-correlation-request-id": [ + "dbff584a-df9b-4f75-95aa-1c7f42d1caba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113246Z:dbff584a-df9b-4f75-95aa-1c7f42d1caba" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c109a7cb-99e4-4e4a-af5a-af1ab54f74b0-2016-03-19 11:32:46Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "efd8576b-020b-4baa-b7b3-74a077c32953" + ], + "x-ms-client-request-id": [ + "c109a7cb-99e4-4e4a-af5a-af1ab54f74b0-2016-03-19 11:32:46Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14759" + ], + "x-ms-correlation-request-id": [ + "efd8576b-020b-4baa-b7b3-74a077c32953" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113247Z:efd8576b-020b-4baa-b7b3-74a077c32953" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3b5953a-40f0-49e7-a9c5-712f16b3e60f-2016-03-19 11:32:47Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "30907f9e-223a-4541-a3e5-757666f2c060" + ], + "x-ms-client-request-id": [ + "f3b5953a-40f0-49e7-a9c5-712f16b3e60f-2016-03-19 11:32:47Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14757" + ], + "x-ms-correlation-request-id": [ + "30907f9e-223a-4541-a3e5-757666f2c060" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113249Z:30907f9e-223a-4541-a3e5-757666f2c060" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:49 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f02df3a9-a416-40d4-860b-570027cfc658-2016-03-19 11:32:50Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "51fcbaf9-3c32-444f-bc03-b73a7cb7f6d4" + ], + "x-ms-client-request-id": [ + "f02df3a9-a416-40d4-860b-570027cfc658-2016-03-19 11:32:50Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14755" + ], + "x-ms-correlation-request-id": [ + "51fcbaf9-3c32-444f-bc03-b73a7cb7f6d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113252Z:51fcbaf9-3c32-444f-bc03-b73a7cb7f6d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:52 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6ecc961-fd2e-4326-a758-ec50afff419c-2016-03-19 11:32:29Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics\",\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"0701FCFCE38E6BA24DBFE0CEEAEE59A18ED279E9\",\r\n \"kekCertExpiryDate\": \"2019-03-17T17:51:50Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "808" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b6ecc961-fd2e-4326-a758-ec50afff419c-2016-03-19 11:32:29Z-P 3/19/2016 11:32:32 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "b6ecc961-fd2e-4326-a758-ec50afff419c-2016-03-19 11:32:29Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14815" + ], + "x-ms-correlation-request-id": [ + "1f699363-1516-4110-8d94-86db1939539d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113232Z:1f699363-1516-4110-8d94-86db1939539d" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:32 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a820027-6cbe-4c94-8747-4537e4bef398-2016-03-19 11:32:33Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"name\": \"9aae8244-910e-467d-bc2d-ac70dbfe581f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_b67769bd_20468OE97116\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1a820027-6cbe-4c94-8747-4537e4bef398-2016-03-19 11:32:33Z-P 3/19/2016 11:32:33 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "1a820027-6cbe-4c94-8747-4537e4bef398-2016-03-19 11:32:33Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14814" + ], + "x-ms-correlation-request-id": [ + "2fd6bd9f-971d-4d4e-95e8-80a016d781aa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113234Z:2fd6bd9f-971d-4d4e-95e8-80a016d781aa" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "390cd841-19af-4428-93a1-d3a2382da617-2016-03-19 11:32:35Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"name\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"friendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "695" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "390cd841-19af-4428-93a1-d3a2382da617-2016-03-19 11:32:35Z-P 3/19/2016 11:32:35 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "390cd841-19af-4428-93a1-d3a2382da617-2016-03-19 11:32:35Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "58d81e3c-a109-47f1-a904-427b12b243c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113236Z:58d81e3c-a109-47f1-a904-427b12b243c4" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "385d4a8c-b083-474d-9c86-909f0be0fedf-2016-03-19 11:32:37Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectionContainerMappings/ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"name\": \"ContainerMapping_ppazure_15313bb2ecdc7e37a30efb5a257db0d9925e3a2ec9e681f284a21ebbd2f9c682\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"sourceFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"ppAzure\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "385d4a8c-b083-474d-9c86-909f0be0fedf-2016-03-19 11:32:37Z-P 3/19/2016 11:32:37 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "385d4a8c-b083-474d-9c86-909f0be0fedf-2016-03-19 11:32:37Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" + ], + "x-ms-correlation-request-id": [ + "ee48e338-e6a4-4548-a545-3e89d05a34c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113237Z:ee48e338-e6a4-4548-a545-3e89d05a34c3" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f0fa967-0564-48bb-b08b-ab791e9289b0-2016-03-19 11:32:38Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f0fa967-0564-48bb-b08b-ab791e9289b0-2016-03-19 11:32:38Z-P 3/19/2016 11:32:38 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "6f0fa967-0564-48bb-b08b-ab791e9289b0-2016-03-19 11:32:38Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14811" + ], + "x-ms-correlation-request-id": [ + "7d612de3-ee0e-4a8c-9223-d85ddf255fac" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113239Z:7d612de3-ee0e-4a8c-9223-d85ddf255fac" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXMvcHBBenVyZT9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d584f82-be2f-4774-81d6-cf13d07a77d8-2016-03-19 11:32:41Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "672" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d584f82-be2f-4774-81d6-cf13d07a77d8-2016-03-19 11:32:41Z-P 3/19/2016 11:32:41 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "3d584f82-be2f-4774-81d6-cf13d07a77d8-2016-03-19 11:32:41Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14809" + ], + "x-ms-correlation-request-id": [ + "00604e95-fa52-4e41-a59b-0de37a44a926" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113242Z:00604e95-fa52-4e41-a59b-0de37a44a926" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUG9saWNpZXM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea0b7e7e-a946-41c1-931a-023c76c08fb1-2016-03-19 11:32:40Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"ppAzure\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 1,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 0,\r\n \"replicationInterval\": 30,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ea0b7e7e-a946-41c1-931a-023c76c08fb1-2016-03-19 11:32:40Z-P 3/19/2016 11:32:40 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "ea0b7e7e-a946-41c1-931a-023c76c08fb1-2016-03-19 11:32:40Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14810" + ], + "x-ms-correlation-request-id": [ + "ccf7de43-a088-46ec-b013-c17f60713a5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113240Z:ccf7de43-a088-46ec-b013-c17f60713a5f" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3359dec-f39d-4342-8f19-76dbeae7e717-2016-03-19 11:32:43Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f4c1b566-716e-475c-9183-33b10effd6d2\",\r\n \"generation\": \"1\",\r\n \"osDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 25,\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A.VHD\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems?api-version=2015-11-10&%24skipToken=ReplicationGroup%3aBegin\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1598" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3359dec-f39d-4342-8f19-76dbeae7e717-2016-03-19 11:32:43Z-P 3/19/2016 11:32:43 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "d3359dec-f39d-4342-8f19-76dbeae7e717-2016-03-19 11:32:43Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "acc1c297-632b-4349-8a0d-1fa074560ace" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113244Z:acc1c297-632b-4349-8a0d-1fa074560ace" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems?api-version=2015-11-10&%24skipToken=ReplicationGroup:Begin", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcz9hcGktdmVyc2lvbj0yMDE1LTExLTEwJiUyNHNraXBUb2tlbj1SZXBsaWNhdGlvbkdyb3VwJTNhQmVnaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e180280-d272-48b3-acd0-85eebae87434-2016-03-19 11:32:45Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9e180280-d272-48b3-acd0-85eebae87434-2016-03-19 11:32:45Z-P 3/19/2016 11:32:45 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "9e180280-d272-48b3-acd0-85eebae87434-2016-03-19 11:32:45Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-correlation-request-id": [ + "1a5844d2-185e-4f40-af4e-e52de4e2dc1e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113245Z:1a5844d2-185e-4f40-af4e-e52de4e2dc1e" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL3JlcGxpY2F0aW9uUHJvdGVjdGFibGVJdGVtcy9iZWI2MTE5Ni00YThmLTQ3ZTEtYTI2Yy0xN2M2MmZmZDQ2OGY/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "855789ef-b5c1-4018-928b-c5842b9e320b-2016-03-19 11:32:46Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f4c1b566-716e-475c-9183-33b10effd6d2\",\r\n \"generation\": \"1\",\r\n \"osDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 25,\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A.VHD\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1141" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "855789ef-b5c1-4018-928b-c5842b9e320b-2016-03-19 11:32:46Z-P 3/19/2016 11:32:46 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "855789ef-b5c1-4018-928b-c5842b9e320b-2016-03-19 11:32:46Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14806" + ], + "x-ms-correlation-request-id": [ + "cd3ca707-5261-4764-9446-16722e7c003d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113247Z:cd3ca707-5261-4764-9446-16722e7c003d" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/ReplicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uRmFicmljcy81YWQzMjZjMTRlZGM2ZGMwMjU0Y2VkYmI3MGYzNjRhOTA5NWU2YjFiMjg3YjE2NjY2YjE2NGU0NjdlOGQ2Y2ViL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lcnMvOTY0OGMxN2UtN2M4ZS00MjE4LTgzNzctMWM5ODlkMGE3ZWIwL1JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYmViNjExOTYtNGE4Zi00N2UxLWEyNmMtMTdjNjJmZmQ0NjhmP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"protectableItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"hvHostVmId\": \"f4c1b566-716e-475c-9183-33b10effd6d2\",\r\n \"vmName\": \"vm1\",\r\n \"osType\": \"Windows\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"targetStorageAccountId\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json" + ], + "Content-Length": [ + "1032" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1458383568471)\\/\",\"NotAfterTimestamp\":\"\\/Date(1458988368471)\\/\",\"ClientRequestId\":\"30bb2055-53a5-494c-a011-55012aee9fc4-2016-03-19 11:32:48Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ddC/m2F7YIt2U6erR+Kn8iYjVN8byTtn6XR2B6lGlYA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "x-ms-client-request-id": [ + "30bb2055-53a5-494c-a011-55012aee9fc4-2016-03-19 11:32:48Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "30" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/af987f9c-e325-4231-ba08-6e12ca061a14?api-version=2015-11-10" + ], + "x-ms-request-id": [ + "30bb2055-53a5-494c-a011-55012aee9fc4-2016-03-19 11:32:48Z-P 3/19/2016 11:32:49 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-client-request-id": [ + "30bb2055-53a5-494c-a011-55012aee9fc4-2016-03-19 11:32:48Z-P" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "0cf2bbcc-789c-4c6f-a38b-93759a37ce66" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113250Z:0cf2bbcc-789c-4c6f-a38b-93759a37ce66" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f/operationresults/af987f9c-e325-4231-ba08-6e12ca061a14?api-version=2015-11-10" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/af987f9c-e325-4231-ba08-6e12ca061a14?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uSm9icy9hZjk4N2Y5Yy1lMzI1LTQyMzEtYmEwOC02ZTEyY2EwNjFhMTQ/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb372d0c-37fd-42b8-b6a1-6e0702839e70-2016-03-19 11:32:51Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/af987f9c-e325-4231-ba08-6e12ca061a14\",\r\n \"name\": \"af987f9c-e325-4231-ba08-6e12ca061a14\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"30bb2055-53a5-494c-a011-55012aee9fc4-2016-03-19 11:32:48Z-P ActivityId: 0cf2bbcc-789c-4c6f-a38b-93759a37ce66\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2016-03-19T11:32:49.7948664Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the Provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2016-03-19T11:32:49.4047928Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"targetObjectName\": \"vm1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmId\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"PrimaryVmName\": \"vm1\",\r\n \"RecoveryVmId\": \"\",\r\n \"RecoveryVmName\": \"vm1\",\r\n \"ProtectionProfileId\": \"53365906-7dbc-44f7-9501-a3977023a97f\",\r\n \"PrimaryCloudId\": \"9648c17e-7c8e-4218-8377-1c989d0a7eb0\",\r\n \"PrimaryCloudName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"RecoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"RecoveryCloudName\": \"Microsoft Azure\",\r\n \"PrimaryVmmId\": \"e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"PrimaryVmmName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"RecoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"RecoveryVmmName\": \"Microsoft Azure\",\r\n \"PrimaryFabricProviderId\": \"VMM\",\r\n \"RecoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n },\r\n \"status\": \"InProgress\",\r\n \"error\": null,\r\n \"startTime\": \"2016-03-19T11:32:49.4047928Z\",\r\n \"endTime\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3477" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb372d0c-37fd-42b8-b6a1-6e0702839e70-2016-03-19 11:32:51Z-P 3/19/2016 11:32:51 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "eb372d0c-37fd-42b8-b6a1-6e0702839e70-2016-03-19 11:32:51Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14805" + ], + "x-ms-correlation-request-id": [ + "cf36cd31-d7e7-4295-afdb-a243aa511268" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T113252Z:cf36cd31-d7e7-4295-afdb-a243aa511268" + ], + "Date": [ + "Sat, 19 Mar 2016 11:32:51 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" + } +} \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestEnumerateRP.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestEnumerateRP.json new file mode 100644 index 000000000000..3fba0e97244f --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestEnumerateRP.json @@ -0,0 +1,653 @@ +{ + "Entries": [ + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14770" + ], + "x-ms-request-id": [ + "71fb50f6-2b70-4ae4-9d4b-3e71ec063a7a" + ], + "x-ms-correlation-request-id": [ + "71fb50f6-2b70-4ae4-9d4b-3e71ec063a7a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114656Z:71fb50f6-2b70-4ae4-9d4b-3e71ec063a7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:46:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14768" + ], + "x-ms-request-id": [ + "3e2865b4-bcbd-4b3e-843e-171c6213ceb3" + ], + "x-ms-correlation-request-id": [ + "3e2865b4-bcbd-4b3e-843e-171c6213ceb3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114658Z:3e2865b4-bcbd-4b3e-843e-171c6213ceb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:46:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-request-id": [ + "0883ca62-9626-4889-a9f4-7b0bbd07835e" + ], + "x-ms-correlation-request-id": [ + "0883ca62-9626-4889-a9f4-7b0bbd07835e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114702Z:0883ca62-9626-4889-a9f4-7b0bbd07835e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:47:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-request-id": [ + "48a3a622-5905-42c8-b4e7-d93c4fba66fd" + ], + "x-ms-correlation-request-id": [ + "48a3a622-5905-42c8-b4e7-d93c4fba66fd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114704Z:48a3a622-5905-42c8-b4e7-d93c4fba66fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:47:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3407d0ae-8b99-4a13-b063-3d54d764c83e-2016-03-19 11:46:55Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5d08e3c9-d3a7-4603-8aab-a87fca0c26ed" + ], + "x-ms-client-request-id": [ + "3407d0ae-8b99-4a13-b063-3d54d764c83e-2016-03-19 11:46:55Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14769" + ], + "x-ms-correlation-request-id": [ + "5d08e3c9-d3a7-4603-8aab-a87fca0c26ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114658Z:5d08e3c9-d3a7-4603-8aab-a87fca0c26ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:46:57 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "319dab38-2ca6-4e0e-a345-e84b76945647-2016-03-19 11:46:57Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "46ac6556-8e0d-4e25-9c4d-2c4e7fccd291" + ], + "x-ms-client-request-id": [ + "319dab38-2ca6-4e0e-a345-e84b76945647-2016-03-19 11:46:57Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-correlation-request-id": [ + "46ac6556-8e0d-4e25-9c4d-2c4e7fccd291" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114659Z:46ac6556-8e0d-4e25-9c4d-2c4e7fccd291" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:46:58 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ece8b0d-1b4a-48ab-999a-6de660b4ba53-2016-03-19 11:47:01Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "02c6229e-0932-4462-b464-3c789e496a76" + ], + "x-ms-client-request-id": [ + "7ece8b0d-1b4a-48ab-999a-6de660b4ba53-2016-03-19 11:47:01Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-correlation-request-id": [ + "02c6229e-0932-4462-b464-3c789e496a76" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114702Z:02c6229e-0932-4462-b464-3c789e496a76" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:47:01 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81264764-08b8-40ca-bf27-5ec2a05e03cc-2016-03-19 11:47:03Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e0817f78-5307-4cb4-9599-b6349940e506" + ], + "x-ms-client-request-id": [ + "81264764-08b8-40ca-bf27-5ec2a05e03cc-2016-03-19 11:47:03Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14763" + ], + "x-ms-correlation-request-id": [ + "e0817f78-5307-4cb4-9599-b6349940e506" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114704Z:e0817f78-5307-4cb4-9599-b6349940e506" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:47:04 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUmVjb3ZlcnlQbGFucz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4e19301-97c1-4524-9867-feab23b423e2-2016-03-19 11:46:58Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp\",\r\n \"name\": \"rp\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"rp\",\r\n \"primaryFabricId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"primaryFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"allowedOperations\": [\r\n \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": []\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1007" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e4e19301-97c1-4524-9867-feab23b423e2-2016-03-19 11:46:58Z-P 3/19/2016 11:47:00 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "e4e19301-97c1-4524-9867-feab23b423e2-2016-03-19 11:46:58Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14813" + ], + "x-ms-correlation-request-id": [ + "f47f01cd-d3f9-4f9e-bfee-f7903c0d41db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114700Z:f47f01cd-d3f9-4f9e-bfee-f7903c0d41db" + ], + "Date": [ + "Sat, 19 Mar 2016 11:47:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUmVjb3ZlcnlQbGFucy9ycD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adea61e5-12c3-4060-a79d-b93771d15fbb-2016-03-19 11:47:01Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp\",\r\n \"name\": \"rp\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"rp\",\r\n \"primaryFabricId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"primaryFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"allowedOperations\": [\r\n \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"virtualMachineId\": null\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1667" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "adea61e5-12c3-4060-a79d-b93771d15fbb-2016-03-19 11:47:01Z-P 3/19/2016 11:47:02 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "adea61e5-12c3-4060-a79d-b93771d15fbb-2016-03-19 11:47:01Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14812" + ], + "x-ms-correlation-request-id": [ + "acf9c847-eb87-4012-8c67-d4faf7dbdbe9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114702Z:acf9c847-eb87-4012-8c67-d4faf7dbdbe9" + ], + "Date": [ + "Sat, 19 Mar 2016 11:47:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationProtectedItems?api-version=2015-11-10&$filter=RecoveryPlanName%20eq%20'rp'", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXM/YXBpLXZlcnNpb249MjAxNS0xMS0xMCYkZmlsdGVyPVJlY292ZXJ5UGxhbk5hbWUlMjBlcSUyMCUyN3JwJTI3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fff03ac4-d00f-446b-b6e1-fb92faa2d955-2016-03-19 11:47:03Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationRecoveryServicesProviders/e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"primaryFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"replicationHealthErrors\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"policyFriendlyName\": \"ppAzure\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f/recoveryPoints/\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVMDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A\",\r\n \"maxSizeMB\": \"25\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\"\r\n }\r\n ],\r\n \"recoveryAzureVMName\": \"vm1\",\r\n \"recoveryAzureVMSize\": \"Basic_A0\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\",\r\n \"lastReplicatedTime\": null,\r\n \"vmId\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"f7448d4e-e6a3-4b9a-a5b6-d36a82e72388\",\r\n \"vMSubnetName\": null,\r\n \"vMNetworkName\": \"00000000-0000-0000-0000-000000000000\",\r\n \"recoveryVMNetworkId\": null,\r\n \"recoveryVMSubnetName\": \"\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\"\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": null,\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"sourceVmRAMSizeInMB\": 32,\r\n \"sourceVmCPUCount\": 1\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4130" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fff03ac4-d00f-446b-b6e1-fb92faa2d955-2016-03-19 11:47:03Z-P 3/19/2016 11:47:03 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "fff03ac4-d00f-446b-b6e1-fb92faa2d955-2016-03-19 11:47:03Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14811" + ], + "x-ms-correlation-request-id": [ + "6fb817fc-a05f-4b1b-a95b-7927f16db6a0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114704Z:6fb817fc-a05f-4b1b-a95b-7927f16db6a0" + ], + "Date": [ + "Sat, 19 Mar 2016 11:47:03 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" + } +} \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestRemoveRP.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestRemoveRP.json new file mode 100644 index 000000000000..a9a46dd39f85 --- /dev/null +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/TestRemoveRP.json @@ -0,0 +1,1011 @@ +{ + "Entries": [ + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14762" + ], + "x-ms-request-id": [ + "ab798042-1d27-4f4b-923c-df6f96c34c5b" + ], + "x-ms-correlation-request-id": [ + "ab798042-1d27-4f4b-923c-df6f96c34c5b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114840Z:ab798042-1d27-4f4b-923c-df6f96c34c5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14760" + ], + "x-ms-request-id": [ + "1f08f992-5806-4049-9b7b-70042fac8661" + ], + "x-ms-correlation-request-id": [ + "1f08f992-5806-4049-9b7b-70042fac8661" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114842Z:1f08f992-5806-4049-9b7b-70042fac8661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14758" + ], + "x-ms-request-id": [ + "9b917207-c674-4c21-98ee-d2a1be118c5a" + ], + "x-ms-correlation-request-id": [ + "9b917207-c674-4c21-98ee-d2a1be118c5a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114845Z:9b917207-c674-4c21-98ee-d2a1be118c5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14756" + ], + "x-ms-request-id": [ + "4200bb21-6706-4bc3-a855-d889351b28cc" + ], + "x-ms-correlation-request-id": [ + "4200bb21-6706-4bc3-a855-d889351b28cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114847Z:4200bb21-6706-4bc3-a855-d889351b28cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14754" + ], + "x-ms-request-id": [ + "d778be54-35ef-4fd6-9b2b-342038aadeda" + ], + "x-ms-correlation-request-id": [ + "d778be54-35ef-4fd6-9b2b-342038aadeda" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114849Z:d778be54-35ef-4fd6-9b2b-342038aadeda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2809" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14752" + ], + "x-ms-request-id": [ + "5ed188cf-dc75-421f-a41b-c47b58cff5ec" + ], + "x-ms-correlation-request-id": [ + "5ed188cf-dc75-421f-a41b-c47b58cff5ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114851Z:5ed188cf-dc75-421f-a41b-c47b58cff5ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26b75161-2ab4-4764-825d-421c5d583e9b-2016-03-19 11:48:39Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ce972042-af0f-4323-a790-6fb3659d921f" + ], + "x-ms-client-request-id": [ + "26b75161-2ab4-4764-825d-421c5d583e9b-2016-03-19 11:48:39Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14761" + ], + "x-ms-correlation-request-id": [ + "ce972042-af0f-4323-a790-6fb3659d921f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114842Z:ce972042-af0f-4323-a790-6fb3659d921f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:41 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9ae4705-08aa-4215-af04-0662bba97131-2016-03-19 11:48:41Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8b03b472-1265-4b40-9195-4ba0bed6f76b" + ], + "x-ms-client-request-id": [ + "d9ae4705-08aa-4215-af04-0662bba97131-2016-03-19 11:48:41Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14759" + ], + "x-ms-correlation-request-id": [ + "8b03b472-1265-4b40-9195-4ba0bed6f76b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114842Z:8b03b472-1265-4b40-9195-4ba0bed6f76b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e6b520e-192b-4db2-90e1-53072dd0aab6-2016-03-19 11:48:44Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8add7809-864e-4330-a126-ab9ba9ac0050" + ], + "x-ms-client-request-id": [ + "6e6b520e-192b-4db2-90e1-53072dd0aab6-2016-03-19 11:48:44Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14757" + ], + "x-ms-correlation-request-id": [ + "8add7809-864e-4330-a126-ab9ba9ac0050" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114846Z:8add7809-864e-4330-a126-ab9ba9ac0050" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65459f8a-117a-4df4-a3af-0f0237c337e2-2016-03-19 11:48:46Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0cdb6444-73ec-4f73-a95f-8b868f2be4a9" + ], + "x-ms-client-request-id": [ + "65459f8a-117a-4df4-a3af-0f0237c337e2-2016-03-19 11:48:46Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14755" + ], + "x-ms-correlation-request-id": [ + "0cdb6444-73ec-4f73-a95f-8b868f2be4a9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114848Z:0cdb6444-73ec-4f73-a95f-8b868f2be4a9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be554079-1b07-44c2-8ddd-113f66dbdd0d-2016-03-19 11:48:48Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a5909640-9c62-4ae8-a212-9d678c8a3ede" + ], + "x-ms-client-request-id": [ + "be554079-1b07-44c2-8ddd-113f66dbdd0d-2016-03-19 11:48:48Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14753" + ], + "x-ms-correlation-request-id": [ + "a5909640-9c62-4ae8-a212-9d678c8a3ede" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114849Z:a5909640-9c62-4ae8-a212-9d678c8a3ede" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:49 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "813a5ed1-23f8-4836-9d58-c4bd76de64ad-2016-03-19 11:48:50Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "27057f09-60bf-4f0b-9075-5dcc0764debe" + ], + "x-ms-client-request-id": [ + "813a5ed1-23f8-4836-9d58-c4bd76de64ad-2016-03-19 11:48:50Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14751" + ], + "x-ms-correlation-request-id": [ + "27057f09-60bf-4f0b-9075-5dcc0764debe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114851Z:27057f09-60bf-4f0b-9075-5dcc0764debe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:51 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUmVjb3ZlcnlQbGFucz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac77a4d2-b3df-41fc-9b9c-882bf02c9063-2016-03-19 11:48:41Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp\",\r\n \"name\": \"rp\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"rp\",\r\n \"primaryFabricId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"primaryFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"allowedOperations\": [\r\n \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": []\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1007" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ac77a4d2-b3df-41fc-9b9c-882bf02c9063-2016-03-19 11:48:41Z-P 3/19/2016 11:48:43 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "ac77a4d2-b3df-41fc-9b9c-882bf02c9063-2016-03-19 11:48:41Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14810" + ], + "x-ms-correlation-request-id": [ + "d15a80a3-ed13-4967-bef4-35a5d1b146c2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114844Z:d15a80a3-ed13-4967-bef4-35a5d1b146c2" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUmVjb3ZlcnlQbGFucy9ycD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38b64c21-aefc-4ae6-824c-af2f5ba1935b-2016-03-19 11:48:45Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp\",\r\n \"name\": \"rp\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"rp\",\r\n \"primaryFabricId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb\",\r\n \"primaryFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"allowedOperations\": [\r\n \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"virtualMachineId\": null\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1667" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "38b64c21-aefc-4ae6-824c-af2f5ba1935b-2016-03-19 11:48:45Z-P 3/19/2016 11:48:45 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "38b64c21-aefc-4ae6-824c-af2f5ba1935b-2016-03-19 11:48:45Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14809" + ], + "x-ms-correlation-request-id": [ + "1176009f-2b57-4f5f-b53d-3e5b0d9ecbc8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114846Z:1176009f-2b57-4f5f-b53d-3e5b0d9ecbc8" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationProtectedItems?api-version=2015-11-10&$filter=RecoveryPlanName%20eq%20'rp'", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXM/YXBpLXZlcnNpb249MjAxNS0xMS0xMCYkZmlsdGVyPVJlY292ZXJ5UGxhbk5hbWUlMjBlcSUyMCUyN3JwJTI3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d0e2c8d-dd91-45d9-9d49-c800292b1911-2016-03-19 11:48:47Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"name\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vm1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectableItems/beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationRecoveryServicesProviders/e4541d85-9963-4b62-9420-8248c54276e4\",\r\n \"primaryFabricFriendlyName\": \"sriramvu-test.ntdev.corp.microsoft.com\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"Cloud_0_15b7884b_30016OE62978\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"replicationHealthErrors\": [],\r\n \"policyId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationPolicies/ppAzure\",\r\n \"policyFriendlyName\": \"ppAzure\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationFabrics/5ad326c14edc6dc0254cedbb70f364a9095e6b1b287b16666b164e467e8d6ceb/replicationProtectionContainers/9648c17e-7c8e-4218-8377-1c989d0a7eb0/replicationProtectedItems/beb61196-4a8f-47e1-a26c-17c62ffd468f/recoveryPoints/\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVMDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"44213588-7903-44a1-a62a-610ebf271678\",\r\n \"vhdName\": \"E2A\",\r\n \"maxSizeMB\": \"25\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\"\r\n }\r\n ],\r\n \"recoveryAzureVMName\": \"vm1\",\r\n \"recoveryAzureVMSize\": \"Basic_A0\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/aef7cd8f-a06f-407d-b7f0-cc78cfebaab0/resourceGroups/rgn1/providers/Microsoft.Storage/storageAccounts/e2astoragev2\",\r\n \"lastReplicatedTime\": null,\r\n \"vmId\": \"beb61196-4a8f-47e1-a26c-17c62ffd468f\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"f7448d4e-e6a3-4b9a-a5b6-d36a82e72388\",\r\n \"vMSubnetName\": null,\r\n \"vMNetworkName\": \"00000000-0000-0000-0000-000000000000\",\r\n \"recoveryVMNetworkId\": null,\r\n \"recoveryVMSubnetName\": \"\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\"\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": null,\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"VER_NT_SERVER\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"6.3\",\r\n \"oSMajorVersion\": \"6\",\r\n \"oSMinorVersion\": \"3\"\r\n },\r\n \"sourceVmRAMSizeInMB\": 32,\r\n \"sourceVmCPUCount\": 1\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "4130" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0d0e2c8d-dd91-45d9-9d49-c800292b1911-2016-03-19 11:48:47Z-P 3/19/2016 11:48:47 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "0d0e2c8d-dd91-45d9-9d49-c800292b1911-2016-03-19 11:48:47Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "f5389829-fffb-4b10-92ff-1be63a51b89e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114847Z:f5389829-fffb-4b10-92ff-1be63a51b89e" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uUmVjb3ZlcnlQbGFucy9ycD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1458384528866)\\/\",\"NotAfterTimestamp\":\"\\/Date(1458989328866)\\/\",\"ClientRequestId\":\"9d1a1b8d-4900-40ab-8cf8-c2e1e3b053d5-2016-03-19 11:48:48Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dF2wX/3hl1Q+ce/jnxLxbcdzGOuEqVhef1XMNfI8ihw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "x-ms-client-request-id": [ + "9d1a1b8d-4900-40ab-8cf8-c2e1e3b053d5-2016-03-19 11:48:48Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "30" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/02f60364-2e89-48ad-89a9-e16f9c930b77?api-version=2015-11-10" + ], + "x-ms-request-id": [ + "9d1a1b8d-4900-40ab-8cf8-c2e1e3b053d5-2016-03-19 11:48:48Z-P 3/19/2016 11:48:49 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-client-request-id": [ + "9d1a1b8d-4900-40ab-8cf8-c2e1e3b053d5-2016-03-19 11:48:48Z-P" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "5e654a87-7fcd-4bb1-9faf-5718b9e8bad1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114849Z:5e654a87-7fcd-4bb1-9faf-5718b9e8bad1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:49 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationRecoveryPlans/rp/operationresults/02f60364-2e89-48ad-89a9-e16f9c930b77?api-version=2015-11-10" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/02f60364-2e89-48ad-89a9-e16f9c930b77?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L2ZvclNlc3Npb25SZWNvcmRzL3JlcGxpY2F0aW9uSm9icy8wMmY2MDM2NC0yZTg5LTQ4YWQtODlhOS1lMTZmOWM5MzBiNzc/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34dd9608-09e6-4456-87d5-e2753fbcd1ee-2016-03-19 11:48:50Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords/replicationJobs/02f60364-2e89-48ad-89a9-e16f9c930b77\",\r\n \"name\": \"02f60364-2e89-48ad-89a9-e16f9c930b77\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9d1a1b8d-4900-40ab-8cf8-c2e1e3b053d5-2016-03-19 11:48:48Z-P ActivityId: 5e654a87-7fcd-4bb1-9faf-5718b9e8bad1\",\r\n \"scenarioName\": null,\r\n \"friendlyName\": null,\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"allowedActions\": [],\r\n \"targetObjectId\": null,\r\n \"targetObjectName\": null,\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n },\r\n \"status\": \"NotStarted\",\r\n \"error\": null,\r\n \"startTime\": null,\r\n \"endTime\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "827" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "34dd9608-09e6-4456-87d5-e2753fbcd1ee-2016-03-19 11:48:50Z-P 3/19/2016 11:48:50 AM" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.0", + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-client-request-id": [ + "34dd9608-09e6-4456-87d5-e2753fbcd1ee-2016-03-19 11:48:50Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-correlation-request-id": [ + "68cc0cdf-af06-4bcb-ba99-f8bba4defab4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160319T114851Z:68cc0cdf-af06-4bcb-ba99-f8bba4defab4" + ], + "Date": [ + "Sat, 19 Mar 2016 11:48:50 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" + } +} \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/VaultCRUDTests.json b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/VaultCRUDTests.json index 19a8162ac4fe..c8bb53754bb2 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/VaultCRUDTests.json +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/SessionRecords/Microsoft.Azure.Commands.SiteRecovery.Test.ScenarioTests.SiteRecoveryTests/VaultCRUDTests.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/v2?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L3YyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -19,13 +19,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"b57647f5-7c38-4f90-a874-912b56ca18be\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults\",\r\n \"sku\": null\r\n}", + "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"v2\",\r\n \"etag\": \"ea593cf7-303d-4ec1-bcce-248ddc517923\",\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/v2\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "359" + "344" ], "Content-Type": [ "application/json" @@ -37,10 +37,10 @@ "no-cache" ], "x-ms-request-id": [ - "1512ec54-80cd-4509-9cde-751a6be5b508" + "dac4bb69-8d66-472b-9d1b-4828e75536c4" ], "x-ms-client-request-id": [ - "38b1f85c-9877-43ad-b9ce-a59d316f7653" + "c284c506-456d-4846-b50b-ec79f68f08ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,16 +49,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "1512ec54-80cd-4509-9cde-751a6be5b508" + "dac4bb69-8d66-472b-9d1b-4828e75536c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095742Z:1512ec54-80cd-4509-9cde-751a6be5b508" + "CENTRALUS:20160319T124531Z:dac4bb69-8d66-472b-9d1b-4828e75536c4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:42 GMT" + "Sat, 19 Mar 2016 12:45:31 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -67,8 +67,8 @@ "StatusCode": 201 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -76,13 +76,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/applicationdemo\",\r\n \"name\": \"applicationdemo\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/applicationsiena\",\r\n \"name\": \"applicationsiena\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/ARMTestRG1\",\r\n \"name\": \"ARMTestRG1\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1194\",\r\n \"name\": \"csmrg1194\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1202\",\r\n \"name\": \"csmrg1202\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1209\",\r\n \"name\": \"csmrg1209\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1220\",\r\n \"name\": \"csmrg1220\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1223\",\r\n \"name\": \"csmrg1223\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1528\",\r\n \"name\": \"csmrg1528\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1666\",\r\n \"name\": \"csmrg1666\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1867\",\r\n \"name\": \"csmrg1867\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg196\",\r\n \"name\": \"csmrg196\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2119\",\r\n \"name\": \"csmrg2119\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2210\",\r\n \"name\": \"csmrg2210\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2218\",\r\n \"name\": \"csmrg2218\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2276\",\r\n \"name\": \"csmrg2276\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2320\",\r\n \"name\": \"csmrg2320\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2420\",\r\n \"name\": \"csmrg2420\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2693\",\r\n \"name\": \"csmrg2693\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg293\",\r\n \"name\": \"csmrg293\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3082\",\r\n \"name\": \"csmrg3082\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3204\",\r\n \"name\": \"csmrg3204\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3487\",\r\n \"name\": \"csmrg3487\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3843\",\r\n \"name\": \"csmrg3843\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3905\",\r\n \"name\": \"csmrg3905\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4036\",\r\n \"name\": \"csmrg4036\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4123\",\r\n \"name\": \"csmrg4123\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4238\",\r\n \"name\": \"csmrg4238\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4250\",\r\n \"name\": \"csmrg4250\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4379\",\r\n \"name\": \"csmrg4379\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4407\",\r\n \"name\": \"csmrg4407\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4759\",\r\n \"name\": \"csmrg4759\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4952\",\r\n \"name\": \"csmrg4952\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5025\",\r\n \"name\": \"csmrg5025\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5224\",\r\n \"name\": \"csmrg5224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5285\",\r\n \"name\": \"csmrg5285\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5352\",\r\n \"name\": \"csmrg5352\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5520\",\r\n \"name\": \"csmrg5520\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5591\",\r\n \"name\": \"csmrg5591\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5803\",\r\n \"name\": \"csmrg5803\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5924\",\r\n \"name\": \"csmrg5924\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6057\",\r\n \"name\": \"csmrg6057\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6147\",\r\n \"name\": \"csmrg6147\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6244\",\r\n \"name\": \"csmrg6244\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6373\",\r\n \"name\": \"csmrg6373\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6426\",\r\n \"name\": \"csmrg6426\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6483\",\r\n \"name\": \"csmrg6483\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6501\",\r\n \"name\": \"csmrg6501\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6607\",\r\n \"name\": \"csmrg6607\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6658\",\r\n \"name\": \"csmrg6658\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6810\",\r\n \"name\": \"csmrg6810\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7193\",\r\n \"name\": \"csmrg7193\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7279\",\r\n \"name\": \"csmrg7279\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7537\",\r\n \"name\": \"csmrg7537\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7542\",\r\n \"name\": \"csmrg7542\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7741\",\r\n \"name\": \"csmrg7741\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8298\",\r\n \"name\": \"csmrg8298\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8383\",\r\n \"name\": \"csmrg8383\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8501\",\r\n \"name\": \"csmrg8501\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8568\",\r\n \"name\": \"csmrg8568\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg890\",\r\n \"name\": \"csmrg890\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8926\",\r\n \"name\": \"csmrg8926\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9020\",\r\n \"name\": \"csmrg9020\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9059\",\r\n \"name\": \"csmrg9059\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9228\",\r\n \"name\": \"csmrg9228\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9372\",\r\n \"name\": \"csmrg9372\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9417\",\r\n \"name\": \"csmrg9417\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg948\",\r\n \"name\": \"csmrg948\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9646\",\r\n \"name\": \"csmrg9646\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9667\",\r\n \"name\": \"csmrg9667\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9696\",\r\n \"name\": \"csmrg9696\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/E2Atesting\",\r\n \"name\": \"E2Atesting\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Gen2RG\",\r\n \"name\": \"Gen2RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/latestrg\",\r\n \"name\": \"latestrg\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/LJSam\",\r\n \"name\": \"LJSam\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/MukeshTestRG\",\r\n \"name\": \"MukeshTestRG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/newe2arg\",\r\n \"name\": \"newe2arg\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-Southeast-Asia\",\r\n \"name\": \"RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-Southeast-Asia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-West-US\",\r\n \"name\": \"RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServicesRG\",\r\n \"name\": \"RecoveryServicesRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg2testE2Afor10_2\",\r\n \"name\": \"rg2testE2Afor10_2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-1\",\r\n \"name\": \"S01-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-2776b10c\",\r\n \"name\": \"S01-2776b10c\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S101-1\",\r\n \"name\": \"S101-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S102-1\",\r\n \"name\": \"S102-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S53-4cddea50\",\r\n \"name\": \"S53-4cddea50\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/s57-1234\",\r\n \"name\": \"s57-1234\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S59-92fc5083\",\r\n \"name\": \"S59-92fc5083\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S5-fb365396\",\r\n \"name\": \"S5-fb365396\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S8-fb365396\",\r\n \"name\": \"S8-fb365396\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1\",\r\n \"name\": \"S91-1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S96-12\",\r\n \"name\": \"S96-12\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S9-fb365396\",\r\n \"name\": \"S9-fb365396\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/sakulkar\",\r\n \"name\": \"sakulkar\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/sam1\",\r\n \"name\": \"sam1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samb2a\",\r\n \"name\": \"samb2a\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhita\",\r\n \"name\": \"samhita\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhitaE2A\",\r\n \"name\": \"samhitaE2A\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhitae2e\",\r\n \"name\": \"samhitae2e\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/TemplateStore\",\r\n \"name\": \"TemplateStore\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-sea\",\r\n \"name\": \"vaults-resourcegroup-sea\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-wus\",\r\n \"name\": \"vaults-resourcegroup-wus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/VS-testacc201-Group\",\r\n \"name\": \"VS-testacc201-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/VS-testacc203-Group\",\r\n \"name\": \"VS-testacc203-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "19208" + "2809" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,283 +94,43 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "812c314a-4092-431e-927d-18b1378c9d40" - ], - "x-ms-correlation-request-id": [ - "812c314a-4092-431e-927d-18b1378c9d40" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095742Z:812c314a-4092-431e-927d-18b1378c9d40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:42 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/applicationdemo/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2FwcGxpY2F0aW9uZGVtby9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eefbd127-7e5f-4487-9393-f7adb6d92649-2015-12-29 09:57:43Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "18b30d2f-2076-48a1-85ba-bcd207506cfc" - ], - "x-ms-client-request-id": [ - "eefbd127-7e5f-4487-9393-f7adb6d92649-2015-12-29 09:57:43Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "18b30d2f-2076-48a1-85ba-bcd207506cfc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095744Z:18b30d2f-2076-48a1-85ba-bcd207506cfc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:44 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/applicationsiena/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2FwcGxpY2F0aW9uc2llbmEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1e89ea1-f4ec-47be-9b43-26180ce6ed76-2015-12-29 09:57:44Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8d26d9f4-d81f-447d-80aa-d0108142a6b1" - ], - "x-ms-client-request-id": [ - "b1e89ea1-f4ec-47be-9b43-26180ce6ed76-2015-12-29 09:57:44Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "8d26d9f4-d81f-447d-80aa-d0108142a6b1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095745Z:8d26d9f4-d81f-447d-80aa-d0108142a6b1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0FSTVRlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "744bf87d-4045-425b-889a-5431a8085505-2015-12-29 09:57:45Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "14974" ], "x-ms-request-id": [ - "5284d07a-0b82-4b67-b5cd-d66839184c28" - ], - "x-ms-client-request-id": [ - "744bf87d-4045-425b-889a-5431a8085505-2015-12-29 09:57:45Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "eee54afe-1dea-4389-989d-70d739eab537" ], "x-ms-correlation-request-id": [ - "5284d07a-0b82-4b67-b5cd-d66839184c28" + "eee54afe-1dea-4389-989d-70d739eab537" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095746Z:5284d07a-0b82-4b67-b5cd-d66839184c28" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1194/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "329b2a36-208f-49a5-b604-3da573a26877-2015-12-29 09:57:46Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "56b88bc8-b066-4cd7-a903-3e72580a9f6e" - ], - "x-ms-client-request-id": [ - "329b2a36-208f-49a5-b604-3da573a26877-2015-12-29 09:57:46Z-P" + "CENTRALUS:20160319T124532Z:eee54afe-1dea-4389-989d-70d739eab537" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-correlation-request-id": [ - "56b88bc8-b066-4cd7-a903-3e72580a9f6e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095746Z:56b88bc8-b066-4cd7-a903-3e72580a9f6e" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" + "Sat, 19 Mar 2016 12:45:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1202/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a2e23bb-ac51-43c5-a127-e25db88c8222-2015-12-29 09:57:46Z-P" + "afaecc4b-c20d-4533-addf-5af690e284b9-2016-03-19 12:45:32Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -388,28 +148,28 @@ "no-cache" ], "x-ms-request-id": [ - "b3c3627a-5177-4abb-8476-92923fca1409" + "9cb6ece9-2608-4387-ab48-b340f98aa2d2" ], "x-ms-client-request-id": [ - "4a2e23bb-ac51-43c5-a127-e25db88c8222-2015-12-29 09:57:46Z-P" + "afaecc4b-c20d-4533-addf-5af690e284b9-2016-03-19 12:45:32Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14973" ], "x-ms-correlation-request-id": [ - "b3c3627a-5177-4abb-8476-92923fca1409" + "9cb6ece9-2608-4387-ab48-b340f98aa2d2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095747Z:b3c3627a-5177-4abb-8476-92923fca1409" + "CENTRALUS:20160319T124533Z:9cb6ece9-2608-4387-ab48-b340f98aa2d2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:47 GMT" + "Sat, 19 Mar 2016 12:45:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -418,19 +178,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1209/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2l0ZVJlY292ZXJ5QlZURDIvU2l0ZVJlY292ZXJ5VmF1bHQ/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4236436-5f22-436b-8379-0030590a8f0c-2015-12-29 09:57:47Z-P" + "75c9c07f-f3bd-42fa-a216-ad21ba836304-2016-03-19 12:45:33Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -448,28 +208,28 @@ "no-cache" ], "x-ms-request-id": [ - "43876023-c459-49c8-a622-63eee625bbc0" + "00906e9c-15bd-4103-a169-4458d802d4e6" ], "x-ms-client-request-id": [ - "a4236436-5f22-436b-8379-0030590a8f0c-2015-12-29 09:57:47Z-P" + "75c9c07f-f3bd-42fa-a216-ad21ba836304-2016-03-19 12:45:33Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14972" ], "x-ms-correlation-request-id": [ - "43876023-c459-49c8-a622-63eee625bbc0" + "00906e9c-15bd-4103-a169-4458d802d4e6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095747Z:43876023-c459-49c8-a622-63eee625bbc0" + "CENTRALUS:20160319T124533Z:00906e9c-15bd-4103-a169-4458d802d4e6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:47 GMT" + "Sat, 19 Mar 2016 12:45:33 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -478,19 +238,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1220/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwLTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7b3ff2e-9c32-4358-ad69-054045bd3448-2015-12-29 09:57:47Z-P" + "d3d1c8d1-8ad8-4830-a3ae-8b3ab20b4a8c-2016-03-19 12:45:33Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -508,28 +268,28 @@ "no-cache" ], "x-ms-request-id": [ - "091e7093-f197-4ddc-9546-da922131f0c9" + "dd19d5ce-3a48-4098-9b1a-91449d49a670" ], "x-ms-client-request-id": [ - "d7b3ff2e-9c32-4358-ad69-054045bd3448-2015-12-29 09:57:47Z-P" + "d3d1c8d1-8ad8-4830-a3ae-8b3ab20b4a8c-2016-03-19 12:45:33Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14971" ], "x-ms-correlation-request-id": [ - "091e7093-f197-4ddc-9546-da922131f0c9" + "dd19d5ce-3a48-4098-9b1a-91449d49a670" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095748Z:091e7093-f197-4ddc-9546-da922131f0c9" + "CENTRALUS:20160319T124534Z:dd19d5ce-3a48-4098-9b1a-91449d49a670" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:48 GMT" + "Sat, 19 Mar 2016 12:45:34 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -538,19 +298,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1223/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwLTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21f03270-5147-4976-bae9-6a22297974ce-2015-12-29 09:57:48Z-P" + "175ee224-70e6-440b-aedd-5476244ad748-2016-03-19 12:45:34Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -568,28 +328,28 @@ "no-cache" ], "x-ms-request-id": [ - "92c1ade6-8a35-4901-8dc1-231d82152755" + "c7569570-2ac2-4a75-bb21-ce23c8815187" ], "x-ms-client-request-id": [ - "21f03270-5147-4976-bae9-6a22297974ce-2015-12-29 09:57:48Z-P" + "175ee224-70e6-440b-aedd-5476244ad748-2016-03-19 12:45:34Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14970" ], "x-ms-correlation-request-id": [ - "92c1ade6-8a35-4901-8dc1-231d82152755" + "c7569570-2ac2-4a75-bb21-ce23c8815187" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095749Z:92c1ade6-8a35-4901-8dc1-231d82152755" + "CENTRALUS:20160319T124535Z:c7569570-2ac2-4a75-bb21-ce23c8815187" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:48 GMT" + "Sat, 19 Mar 2016 12:45:34 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -598,19 +358,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1528/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL0dyb3VwLTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c03ef189-6107-4fdc-ac37-549e88c6edf2-2015-12-29 09:57:48Z-P" + "00de8402-6f64-43cf-9fe8-d0568fa3ae33-2016-03-19 12:45:35Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -628,28 +388,28 @@ "no-cache" ], "x-ms-request-id": [ - "8f8cc0f0-49be-431f-8d0e-d6c78f20a18c" + "28ef8f3d-aff2-45ff-954c-83bace3f8ad3" ], "x-ms-client-request-id": [ - "c03ef189-6107-4fdc-ac37-549e88c6edf2-2015-12-29 09:57:48Z-P" + "00de8402-6f64-43cf-9fe8-d0568fa3ae33-2016-03-19 12:45:35Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14969" ], "x-ms-correlation-request-id": [ - "8f8cc0f0-49be-431f-8d0e-d6c78f20a18c" + "28ef8f3d-aff2-45ff-954c-83bace3f8ad3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095749Z:8f8cc0f0-49be-431f-8d0e-d6c78f20a18c" + "CENTRALUS:20160319T124535Z:28ef8f3d-aff2-45ff-954c-83bace3f8ad3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:49 GMT" + "Sat, 19 Mar 2016 12:45:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -658,19 +418,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1666/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTY2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL2dydDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13f1bcf6-5288-4241-b5b9-2e2691222cff-2015-12-29 09:57:49Z-P" + "f9ae879b-55e5-458c-a086-ad72a8e00517-2016-03-19 12:45:35Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -688,28 +448,28 @@ "no-cache" ], "x-ms-request-id": [ - "44f26155-518a-46e3-ae27-2da4d6ead142" + "e68274f8-6a1f-4443-b2f9-b6c59a45567a" ], "x-ms-client-request-id": [ - "13f1bcf6-5288-4241-b5b9-2e2691222cff-2015-12-29 09:57:49Z-P" + "f9ae879b-55e5-458c-a086-ad72a8e00517-2016-03-19 12:45:35Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14968" ], "x-ms-correlation-request-id": [ - "44f26155-518a-46e3-ae27-2da4d6ead142" + "e68274f8-6a1f-4443-b2f9-b6c59a45567a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095750Z:44f26155-518a-46e3-ae27-2da4d6ead142" + "CENTRALUS:20160319T124536Z:e68274f8-6a1f-4443-b2f9-b6c59a45567a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:50 GMT" + "Sat, 19 Mar 2016 12:45:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -718,19 +478,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1867/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTg2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL01vYmlsZUVuZ2FnZW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5TaXRlUmVjb3ZlcnlCVlREMi9TaXRlUmVjb3ZlcnlWYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb22f550-1be2-4c9f-985d-266d48c15f6d-2015-12-29 09:57:50Z-P" + "9b1948cc-9505-4594-a20b-e902f0e47f00-2016-03-19 12:45:36Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -748,28 +508,28 @@ "no-cache" ], "x-ms-request-id": [ - "e2cb1d20-52f1-4836-8643-e8f3df0e1c14" + "fd4f95c8-ec23-4755-8533-91f009f69b8c" ], "x-ms-client-request-id": [ - "bb22f550-1be2-4c9f-985d-266d48c15f6d-2015-12-29 09:57:50Z-P" + "9b1948cc-9505-4594-a20b-e902f0e47f00-2016-03-19 12:45:36Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14967" ], "x-ms-correlation-request-id": [ - "e2cb1d20-52f1-4836-8643-e8f3df0e1c14" + "fd4f95c8-ec23-4755-8533-91f009f69b8c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095750Z:e2cb1d20-52f1-4836-8643-e8f3df0e1c14" + "CENTRALUS:20160319T124536Z:fd4f95c8-ec23-4755-8533-91f009f69b8c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:50 GMT" + "Sat, 19 Mar 2016 12:45:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -778,19 +538,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg196/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL09JLURlZmF1bHQtRWFzdC1VUy9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12112d0f-5b0d-4919-92a1-4135a0adf4e2-2015-12-29 09:57:50Z-P" + "c6ac696b-9a08-439a-a938-d970a1900177-2016-03-19 12:45:37Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -808,28 +568,28 @@ "no-cache" ], "x-ms-request-id": [ - "ce1c095a-7219-444c-8615-f0ecad886079" + "9c78efac-6c28-43af-9d53-1264b314f6b3" ], "x-ms-client-request-id": [ - "12112d0f-5b0d-4919-92a1-4135a0adf4e2-2015-12-29 09:57:50Z-P" + "c6ac696b-9a08-439a-a938-d970a1900177-2016-03-19 12:45:37Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14966" ], "x-ms-correlation-request-id": [ - "ce1c095a-7219-444c-8615-f0ecad886079" + "9c78efac-6c28-43af-9d53-1264b314f6b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095751Z:ce1c095a-7219-444c-8615-f0ecad886079" + "CENTRALUS:20160319T124537Z:9c78efac-6c28-43af-9d53-1264b314f6b3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:51 GMT" + "Sat, 19 Mar 2016 12:45:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -838,25 +598,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2119/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjExOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtTUpNSU5QNVZWT0dTUFNKQ1FTV0cyUkNMUU5YWFdIQldGTzZBT0RUUjZEV0EzU0FaM0pOUS1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2l0ZVJlY292ZXJ5QlZURDIvU2l0ZVJlY292ZXJ5VmF1bHQ/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "339906e1-94ab-4123-85ad-572314614afd-2015-12-29 09:57:51Z-P" + "4e90b8df-86e8-42bf-9f2c-c15997d0356a-2016-03-19 12:45:37Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rdfeVault\",\r\n \"etag\": \"f85e0f26-0081-47a2-9dd6-3a2539c4afc9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US/providers/microsoft.siterecoverybvtd2/SiteRecoveryVault/rdfeVault\",\r\n \"type\": \"microsoft.siterecoverybvtd2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "467" ], "Content-Type": [ "application/json" @@ -868,28 +628,28 @@ "no-cache" ], "x-ms-request-id": [ - "d647931a-0611-4042-a6be-e9faf113c869" + "1a149e17-ccf1-4845-99e9-e3c2acc76c2e" ], "x-ms-client-request-id": [ - "339906e1-94ab-4123-85ad-572314614afd-2015-12-29 09:57:51Z-P" + "4e90b8df-86e8-42bf-9f2c-c15997d0356a-2016-03-19 12:45:37Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14965" ], "x-ms-correlation-request-id": [ - "d647931a-0611-4042-a6be-e9faf113c869" + "1a149e17-ccf1-4845-99e9-e3c2acc76c2e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095751Z:d647931a-0611-4042-a6be-e9faf113c869" + "CENTRALUS:20160319T124538Z:1a149e17-ccf1-4845-99e9-e3c2acc76c2e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:51 GMT" + "Sat, 19 Mar 2016 12:45:38 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -898,25 +658,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2210/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3e0328c-9e8a-4f27-819e-7fa253406aea-2015-12-29 09:57:51Z-P" + "fdf60808-78a6-44cf-b376-046561f090ab-2016-03-19 12:45:38Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"v2\",\r\n \"etag\": \"ea593cf7-303d-4ec1-bcce-248ddc517923\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/v2\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "777" ], "Content-Type": [ "application/json" @@ -928,28 +688,28 @@ "no-cache" ], "x-ms-request-id": [ - "f75b8803-2eb8-412a-aaea-7dc7d43e2a31" + "113ad0af-a204-40b5-b4fb-8f6925df4580" ], "x-ms-client-request-id": [ - "d3e0328c-9e8a-4f27-819e-7fa253406aea-2015-12-29 09:57:51Z-P" + "fdf60808-78a6-44cf-b376-046561f090ab-2016-03-19 12:45:38Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14964" ], "x-ms-correlation-request-id": [ - "f75b8803-2eb8-412a-aaea-7dc7d43e2a31" + "113ad0af-a204-40b5-b4fb-8f6925df4580" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095752Z:f75b8803-2eb8-412a-aaea-7dc7d43e2a31" + "CENTRALUS:20160319T124539Z:113ad0af-a204-40b5-b4fb-8f6925df4580" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:52 GMT" + "Sat, 19 Mar 2016 12:45:39 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -958,25 +718,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2218/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5c9cdd4-f1ad-40bb-9cbd-bd5619b7f68a-2015-12-29 09:57:52Z-P" + "b369a490-57f9-4106-bf47-a813adecf684-2016-03-19 12:45:43Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"v2\",\r\n \"etag\": \"ea593cf7-303d-4ec1-bcce-248ddc517923\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/v2\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "777" ], "Content-Type": [ "application/json" @@ -988,28 +748,28 @@ "no-cache" ], "x-ms-request-id": [ - "9789090f-8a6a-4304-8276-0a1e70a954d8" + "561edb57-cadd-4573-bf3e-39e34caebf83" ], "x-ms-client-request-id": [ - "f5c9cdd4-f1ad-40bb-9cbd-bd5619b7f68a-2015-12-29 09:57:52Z-P" + "b369a490-57f9-4106-bf47-a813adecf684-2016-03-19 12:45:43Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14958" ], "x-ms-correlation-request-id": [ - "9789090f-8a6a-4304-8276-0a1e70a954d8" + "561edb57-cadd-4573-bf3e-39e34caebf83" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095753Z:9789090f-8a6a-4304-8276-0a1e70a954d8" + "CENTRALUS:20160319T124544Z:561edb57-cadd-4573-bf3e-39e34caebf83" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:52 GMT" + "Sat, 19 Mar 2016 12:45:44 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1018,25 +778,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2276/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjI3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcd026b2-b2d0-445c-a41c-f17d1bb8e651-2015-12-29 09:57:52Z-P" + "e02cfe7c-7de5-4f6e-8a31-afc80073b27a-2016-03-19 12:45:48Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"forSessionRecords\",\r\n \"etag\": \"d566af86-7a94-4b41-802b-0856b133ae35\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/forSessionRecords\",\r\n \"type\": \"Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "409" ], "Content-Type": [ "application/json" @@ -1048,28 +808,28 @@ "no-cache" ], "x-ms-request-id": [ - "279e34e9-653d-44d0-95b1-c85a951325c7" + "2d8821fc-4add-470c-aab1-5a566b70fcfe" ], "x-ms-client-request-id": [ - "bcd026b2-b2d0-445c-a41c-f17d1bb8e651-2015-12-29 09:57:52Z-P" + "e02cfe7c-7de5-4f6e-8a31-afc80073b27a-2016-03-19 12:45:48Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14957" ], "x-ms-correlation-request-id": [ - "279e34e9-653d-44d0-95b1-c85a951325c7" + "2d8821fc-4add-470c-aab1-5a566b70fcfe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095753Z:279e34e9-653d-44d0-95b1-c85a951325c7" + "CENTRALUS:20160319T124549Z:2d8821fc-4add-470c-aab1-5a566b70fcfe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:53 GMT" + "Sat, 19 Mar 2016 12:45:49 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1078,19 +838,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2320/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjMyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75767307-e905-41b0-95f2-dd7bb0c20481-2015-12-29 09:57:53Z-P" + "81f80044-d57d-44d8-b12f-c11edf88fbbf-2016-03-19 12:45:39Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1108,28 +868,28 @@ "no-cache" ], "x-ms-request-id": [ - "a95dcc66-da0f-4909-b1ba-bd3755feb403" + "3c8079de-e0d9-4998-8a48-19d3c2069b28" ], "x-ms-client-request-id": [ - "75767307-e905-41b0-95f2-dd7bb0c20481-2015-12-29 09:57:53Z-P" + "81f80044-d57d-44d8-b12f-c11edf88fbbf-2016-03-19 12:45:39Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14963" ], "x-ms-correlation-request-id": [ - "a95dcc66-da0f-4909-b1ba-bd3755feb403" + "3c8079de-e0d9-4998-8a48-19d3c2069b28" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095754Z:a95dcc66-da0f-4909-b1ba-bd3755feb403" + "CENTRALUS:20160319T124540Z:3c8079de-e0d9-4998-8a48-19d3c2069b28" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:53 GMT" + "Sat, 19 Mar 2016 12:45:39 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1138,19 +898,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2420/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JndGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c5f180-29f4-43a2-bb78-e08aae7a680b-2015-12-29 09:57:54Z-P" + "39a89405-44ba-425a-b848-bd0dcec4d943-2016-03-19 12:45:40Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1168,28 +928,28 @@ "no-cache" ], "x-ms-request-id": [ - "292ddccf-f452-4420-a914-91f1a9e2de08" + "492473c7-6e53-41ca-9c12-54e2948d286c" ], "x-ms-client-request-id": [ - "d5c5f180-29f4-43a2-bb78-e08aae7a680b-2015-12-29 09:57:54Z-P" + "39a89405-44ba-425a-b848-bd0dcec4d943-2016-03-19 12:45:40Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14962" ], "x-ms-correlation-request-id": [ - "292ddccf-f452-4420-a914-91f1a9e2de08" + "492473c7-6e53-41ca-9c12-54e2948d286c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095754Z:292ddccf-f452-4420-a914-91f1a9e2de08" + "CENTRALUS:20160319T124540Z:492473c7-6e53-41ca-9c12-54e2948d286c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:54 GMT" + "Sat, 19 Mar 2016 12:45:40 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1198,19 +958,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg2693/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjY5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3NpdGVSZWNvdmVyeVBQRUNTTVJHNi9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f2312f4-7ea7-4118-9277-2cc54a6f8290-2015-12-29 09:57:54Z-P" + "78070047-ea72-4bf9-a30e-b722c75ef506-2016-03-19 12:45:40Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1228,28 +988,28 @@ "no-cache" ], "x-ms-request-id": [ - "c0ba7969-d7f1-42c4-9a3c-dad1f4821d42" + "fd4d9112-6c31-45d7-9cde-5e559d8b6154" ], "x-ms-client-request-id": [ - "4f2312f4-7ea7-4118-9277-2cc54a6f8290-2015-12-29 09:57:54Z-P" + "78070047-ea72-4bf9-a30e-b722c75ef506-2016-03-19 12:45:40Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14961" ], "x-ms-correlation-request-id": [ - "c0ba7969-d7f1-42c4-9a3c-dad1f4821d42" + "fd4d9112-6c31-45d7-9cde-5e559d8b6154" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095755Z:c0ba7969-d7f1-42c4-9a3c-dad1f4821d42" + "CENTRALUS:20160319T124541Z:fd4d9112-6c31-45d7-9cde-5e559d8b6154" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:55 GMT" + "Sat, 19 Mar 2016 12:45:40 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1258,19 +1018,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg293/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3Rlc3RCaWxsaW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2l0ZVJlY292ZXJ5QlZURDIvU2l0ZVJlY292ZXJ5VmF1bHQ/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dcdcc1a-e6b9-4329-9707-704fa3c3b8bc-2015-12-29 09:57:55Z-P" + "1eeea23c-7b0c-4794-b231-9a246ed41bcf-2016-03-19 12:45:41Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1288,28 +1048,28 @@ "no-cache" ], "x-ms-request-id": [ - "3a0668df-bda9-4b7f-9511-ae2a758c845f" + "3cedd44b-9f75-46ed-aaff-74b3fbf7330e" ], "x-ms-client-request-id": [ - "3dcdcc1a-e6b9-4329-9707-704fa3c3b8bc-2015-12-29 09:57:55Z-P" + "1eeea23c-7b0c-4794-b231-9a246ed41bcf-2016-03-19 12:45:41Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14960" ], "x-ms-correlation-request-id": [ - "3a0668df-bda9-4b7f-9511-ae2a758c845f" + "3cedd44b-9f75-46ed-aaff-74b3fbf7330e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095756Z:3a0668df-bda9-4b7f-9511-ae2a758c845f" + "CENTRALUS:20160319T124541Z:3cedd44b-9f75-46ed-aaff-74b3fbf7330e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:57:55 GMT" + "Sat, 19 Mar 2016 12:45:41 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1318,19 +1078,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3082/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzA4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL1ZTLXZzby05LTI1LUdyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2l0ZVJlY292ZXJ5QlZURDIvU2l0ZVJlY292ZXJ5VmF1bHQ/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e13ac796-6b7b-43d0-a8a2-92b14677240f-2015-12-29 09:57:55Z-P" + "65c42f27-03d0-4e46-8fe2-78f6d6fe42b9-2016-03-19 12:45:41Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1348,5308 +1108,28 @@ "no-cache" ], "x-ms-request-id": [ - "3c5b88b0-ba1b-4a85-a0ef-99b8143d88bb" + "eb574396-dffa-4658-949a-4901d8470796" ], "x-ms-client-request-id": [ - "e13ac796-6b7b-43d0-a8a2-92b14677240f-2015-12-29 09:57:55Z-P" + "65c42f27-03d0-4e46-8fe2-78f6d6fe42b9-2016-03-19 12:45:41Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-correlation-request-id": [ - "3c5b88b0-ba1b-4a85-a0ef-99b8143d88bb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095756Z:3c5b88b0-ba1b-4a85-a0ef-99b8143d88bb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:56 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3204/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzIwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81d0f20a-d9cf-49ff-a3ed-4c29562f69c7-2015-12-29 09:57:56Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "88242031-60e3-404a-84d1-0784b20b6d97" - ], - "x-ms-client-request-id": [ - "81d0f20a-d9cf-49ff-a3ed-4c29562f69c7-2015-12-29 09:57:56Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "88242031-60e3-404a-84d1-0784b20b6d97" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095758Z:88242031-60e3-404a-84d1-0784b20b6d97" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:57 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3487/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09804bca-2475-481c-8b96-cdd3ce1128f8-2015-12-29 09:57:57Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4c1d50f5-d28c-42bc-bf00-99ae425dd6c1" - ], - "x-ms-client-request-id": [ - "09804bca-2475-481c-8b96-cdd3ce1128f8-2015-12-29 09:57:57Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "4c1d50f5-d28c-42bc-bf00-99ae425dd6c1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095758Z:4c1d50f5-d28c-42bc-bf00-99ae425dd6c1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:58 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3843/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "08c5922d-5b03-46dc-a3fb-59e5073a8946-2015-12-29 09:57:58Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "58aa3596-6c34-47d5-9c86-47ebd307468d" - ], - "x-ms-client-request-id": [ - "08c5922d-5b03-46dc-a3fb-59e5073a8946-2015-12-29 09:57:58Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-correlation-request-id": [ - "58aa3596-6c34-47d5-9c86-47ebd307468d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095759Z:58aa3596-6c34-47d5-9c86-47ebd307468d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:58 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg3905/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMzkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e8a21e16-3964-4f2a-adff-709a5b02be6c-2015-12-29 09:57:59Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "89f1c86e-bf07-4b34-a12f-131147e0cd7c" - ], - "x-ms-client-request-id": [ - "e8a21e16-3964-4f2a-adff-709a5b02be6c-2015-12-29 09:57:59Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "89f1c86e-bf07-4b34-a12f-131147e0cd7c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095759Z:89f1c86e-bf07-4b34-a12f-131147e0cd7c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:59 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4036/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDAzNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81d76c24-92be-4e5f-a9dd-3b1ec44d6ef5-2015-12-29 09:57:59Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e732d748-64b4-4411-9735-17d6ae954ce4" - ], - "x-ms-client-request-id": [ - "81d76c24-92be-4e5f-a9dd-3b1ec44d6ef5-2015-12-29 09:57:59Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "e732d748-64b4-4411-9735-17d6ae954ce4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095800Z:e732d748-64b4-4411-9735-17d6ae954ce4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:57:59 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4123/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDEyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c11ecb9e-545d-47c7-8d63-3d108b49ab0b-2015-12-29 09:58:00Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a683d6a7-b6be-45c2-9132-38824fe50d83" - ], - "x-ms-client-request-id": [ - "c11ecb9e-545d-47c7-8d63-3d108b49ab0b-2015-12-29 09:58:00Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "a683d6a7-b6be-45c2-9132-38824fe50d83" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095800Z:a683d6a7-b6be-45c2-9132-38824fe50d83" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:00 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4238/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDIzOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "554655bc-7d74-4625-872a-ad124d12bec1-2015-12-29 09:58:00Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "beebb435-8408-4ed8-a740-d3cf12dc24e0" - ], - "x-ms-client-request-id": [ - "554655bc-7d74-4625-872a-ad124d12bec1-2015-12-29 09:58:00Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "beebb435-8408-4ed8-a740-d3cf12dc24e0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095801Z:beebb435-8408-4ed8-a740-d3cf12dc24e0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:00 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4250/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDI1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c2eb493f-a134-428b-b9d9-e4cd9d57928e-2015-12-29 09:58:01Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "85bff8d1-de1b-4f63-ba1d-982f0b379f8a" - ], - "x-ms-client-request-id": [ - "c2eb493f-a134-428b-b9d9-e4cd9d57928e-2015-12-29 09:58:01Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-correlation-request-id": [ - "85bff8d1-de1b-4f63-ba1d-982f0b379f8a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095802Z:85bff8d1-de1b-4f63-ba1d-982f0b379f8a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:01 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4379/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "436ae0ea-8cae-429b-ae23-69a775266798-2015-12-29 09:58:01Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6ca746b1-4616-4238-92a9-cba6bd7cfd78" - ], - "x-ms-client-request-id": [ - "436ae0ea-8cae-429b-ae23-69a775266798-2015-12-29 09:58:01Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "6ca746b1-4616-4238-92a9-cba6bd7cfd78" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095802Z:6ca746b1-4616-4238-92a9-cba6bd7cfd78" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:02 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4407/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDQwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "34969a25-b0e6-4b55-b474-8f4dd4328acc-2015-12-29 09:58:02Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ba62483a-d3c6-444a-b479-e9cb9abc5194" - ], - "x-ms-client-request-id": [ - "34969a25-b0e6-4b55-b474-8f4dd4328acc-2015-12-29 09:58:02Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "ba62483a-d3c6-444a-b479-e9cb9abc5194" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095803Z:ba62483a-d3c6-444a-b479-e9cb9abc5194" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:02 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4759/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDc1OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6a9bb224-26a6-4adc-af92-f67eb037b67d-2015-12-29 09:58:02Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a7823bd5-c25f-46b4-a11c-d810459ed6e2" - ], - "x-ms-client-request-id": [ - "6a9bb224-26a6-4adc-af92-f67eb037b67d-2015-12-29 09:58:02Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "a7823bd5-c25f-46b4-a11c-d810459ed6e2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095803Z:a7823bd5-c25f-46b4-a11c-d810459ed6e2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:03 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg4952/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDk1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc19317a-d893-40f5-b54b-7438bc2a72f0-2015-12-29 09:58:03Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4f45a2be-1c37-4bfc-9dcd-c87208d2593a" - ], - "x-ms-client-request-id": [ - "cc19317a-d893-40f5-b54b-7438bc2a72f0-2015-12-29 09:58:03Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-correlation-request-id": [ - "4f45a2be-1c37-4bfc-9dcd-c87208d2593a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095804Z:4f45a2be-1c37-4bfc-9dcd-c87208d2593a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:03 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5025/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTAyNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f7195edf-9df3-4281-a4ad-33394bf421da-2015-12-29 09:58:04Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0b3e50c2-4637-48a9-b623-d4a3832efa92" - ], - "x-ms-client-request-id": [ - "f7195edf-9df3-4281-a4ad-33394bf421da-2015-12-29 09:58:04Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "0b3e50c2-4637-48a9-b623-d4a3832efa92" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095804Z:0b3e50c2-4637-48a9-b623-d4a3832efa92" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:04 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5224/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTIyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ee2d11c-e2ec-42db-8d83-b4e9e00177bd-2015-12-29 09:58:04Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5d27f1e3-8d27-4b45-b8ea-253422efd40d" - ], - "x-ms-client-request-id": [ - "3ee2d11c-e2ec-42db-8d83-b4e9e00177bd-2015-12-29 09:58:04Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "5d27f1e3-8d27-4b45-b8ea-253422efd40d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095805Z:5d27f1e3-8d27-4b45-b8ea-253422efd40d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:04 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5285/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTI4NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0726e9c8-cb0c-41b4-9850-675a5322f6e3-2015-12-29 09:58:05Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2ee17f74-b5a8-48d1-b775-254978966868" - ], - "x-ms-client-request-id": [ - "0726e9c8-cb0c-41b4-9850-675a5322f6e3-2015-12-29 09:58:05Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-correlation-request-id": [ - "2ee17f74-b5a8-48d1-b775-254978966868" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095806Z:2ee17f74-b5a8-48d1-b775-254978966868" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:05 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5352/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTM1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81a9847b-9157-42fa-8083-7429e2018b52-2015-12-29 09:58:05Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "762a1be7-9a06-428e-a8a3-f072b8ec3c01" - ], - "x-ms-client-request-id": [ - "81a9847b-9157-42fa-8083-7429e2018b52-2015-12-29 09:58:05Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "762a1be7-9a06-428e-a8a3-f072b8ec3c01" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095806Z:762a1be7-9a06-428e-a8a3-f072b8ec3c01" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:06 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5520/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9e23441d-4392-4ad7-bd0f-cb807909827d-2015-12-29 09:58:06Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ef0280c0-3598-41cc-bd83-d9319e382947" - ], - "x-ms-client-request-id": [ - "9e23441d-4392-4ad7-bd0f-cb807909827d-2015-12-29 09:58:06Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-correlation-request-id": [ - "ef0280c0-3598-41cc-bd83-d9319e382947" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095807Z:ef0280c0-3598-41cc-bd83-d9319e382947" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:06 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5591/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTU5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6a88c3df-5d0f-4cef-bd71-f7301ab44de9-2015-12-29 09:58:07Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7e8b8fed-7008-4ba2-931a-461e9b93a747" - ], - "x-ms-client-request-id": [ - "6a88c3df-5d0f-4cef-bd71-f7301ab44de9-2015-12-29 09:58:07Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "7e8b8fed-7008-4ba2-931a-461e9b93a747" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095807Z:7e8b8fed-7008-4ba2-931a-461e9b93a747" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:07 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5803/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a522dae-9e38-4f0c-8a5f-ac3bc8d5c40e-2015-12-29 09:58:07Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c0a74e88-bd8f-45d0-a609-c3402c3be45c" - ], - "x-ms-client-request-id": [ - "2a522dae-9e38-4f0c-8a5f-ac3bc8d5c40e-2015-12-29 09:58:07Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-correlation-request-id": [ - "c0a74e88-bd8f-45d0-a609-c3402c3be45c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095808Z:c0a74e88-bd8f-45d0-a609-c3402c3be45c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:07 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg5924/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "614f4db2-6230-437a-9e53-12d4729cc7b3-2015-12-29 09:58:08Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2c7e7f64-3c19-47c9-a80e-29c955b9f2d2" - ], - "x-ms-client-request-id": [ - "614f4db2-6230-437a-9e53-12d4729cc7b3-2015-12-29 09:58:08Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "2c7e7f64-3c19-47c9-a80e-29c955b9f2d2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095808Z:2c7e7f64-3c19-47c9-a80e-29c955b9f2d2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:08 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6057/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "29709e28-92b3-48bd-93ff-cbc77446c641-2015-12-29 09:58:08Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ab75817c-5bd3-4929-9c7f-10d099960ea6" - ], - "x-ms-client-request-id": [ - "29709e28-92b3-48bd-93ff-cbc77446c641-2015-12-29 09:58:08Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "ab75817c-5bd3-4929-9c7f-10d099960ea6" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095809Z:ab75817c-5bd3-4929-9c7f-10d099960ea6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:08 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6147/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjE0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c321cc7e-dfa4-4e7a-a5bf-bde2c386cacf-2015-12-29 09:58:09Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a9b0f18d-39d1-48c5-af12-b40999f23b90" - ], - "x-ms-client-request-id": [ - "c321cc7e-dfa4-4e7a-a5bf-bde2c386cacf-2015-12-29 09:58:09Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "a9b0f18d-39d1-48c5-af12-b40999f23b90" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095810Z:a9b0f18d-39d1-48c5-af12-b40999f23b90" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:09 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6244/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d51480df-f33c-4edd-83fa-f320cd040888-2015-12-29 09:58:09Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0d35303d-357b-4c2a-97f4-7f31a183fb64" - ], - "x-ms-client-request-id": [ - "d51480df-f33c-4edd-83fa-f320cd040888-2015-12-29 09:58:09Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "0d35303d-357b-4c2a-97f4-7f31a183fb64" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095810Z:0d35303d-357b-4c2a-97f4-7f31a183fb64" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:09 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6373/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjM3My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8e62e117-9ccf-4467-9b24-c71d4fd1be81-2015-12-29 09:58:10Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0ff8e087-9115-4dd4-bc21-61d7832eed4c" - ], - "x-ms-client-request-id": [ - "8e62e117-9ccf-4467-9b24-c71d4fd1be81-2015-12-29 09:58:10Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "0ff8e087-9115-4dd4-bc21-61d7832eed4c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095811Z:0ff8e087-9115-4dd4-bc21-61d7832eed4c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:10 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6426/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjQyNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e9a749fd-b77e-4e97-b665-cdd711dd3151-2015-12-29 09:58:11Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2eb91bd6-d6da-48b4-a9ee-7ef10fd45a16" - ], - "x-ms-client-request-id": [ - "e9a749fd-b77e-4e97-b665-cdd711dd3151-2015-12-29 09:58:11Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "2eb91bd6-d6da-48b4-a9ee-7ef10fd45a16" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095811Z:2eb91bd6-d6da-48b4-a9ee-7ef10fd45a16" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:11 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6483/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c8589b66-8f65-4329-b1bc-036a03e2ed83-2015-12-29 09:58:11Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d8e6172e-83fc-4a23-81a2-f473975e2b41" - ], - "x-ms-client-request-id": [ - "c8589b66-8f65-4329-b1bc-036a03e2ed83-2015-12-29 09:58:11Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], - "x-ms-correlation-request-id": [ - "d8e6172e-83fc-4a23-81a2-f473975e2b41" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095812Z:d8e6172e-83fc-4a23-81a2-f473975e2b41" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:11 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6501/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjUwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "db8efa89-5efd-40f7-86f8-bca96540aa9a-2015-12-29 09:58:12Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "43db76c0-05a1-4afa-9539-6d2d86df1d1e" - ], - "x-ms-client-request-id": [ - "db8efa89-5efd-40f7-86f8-bca96540aa9a-2015-12-29 09:58:12Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" - ], - "x-ms-correlation-request-id": [ - "43db76c0-05a1-4afa-9539-6d2d86df1d1e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095813Z:43db76c0-05a1-4afa-9539-6d2d86df1d1e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:12 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6607/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjYwNy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "071f1014-0417-4daa-8dbf-972c19a4ec36-2015-12-29 09:58:13Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "06291816-21a6-4746-8aff-704dac23f34d" - ], - "x-ms-client-request-id": [ - "071f1014-0417-4daa-8dbf-972c19a4ec36-2015-12-29 09:58:13Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" - ], - "x-ms-correlation-request-id": [ - "06291816-21a6-4746-8aff-704dac23f34d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095813Z:06291816-21a6-4746-8aff-704dac23f34d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:13 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6658/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d5310b9e-c9e9-40bb-a4b6-b2b9a0599f08-2015-12-29 09:58:13Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "13949889-5abf-45fc-b8bb-298b43bd69de" - ], - "x-ms-client-request-id": [ - "d5310b9e-c9e9-40bb-a4b6-b2b9a0599f08-2015-12-29 09:58:13Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" - ], - "x-ms-correlation-request-id": [ - "13949889-5abf-45fc-b8bb-298b43bd69de" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095814Z:13949889-5abf-45fc-b8bb-298b43bd69de" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:13 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg6810/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNjgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9478bea6-7197-40f6-b2fb-91a6b99f1d05-2015-12-29 09:58:14Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eac030ab-eec5-4f24-a0e4-bcf449d2058f" - ], - "x-ms-client-request-id": [ - "9478bea6-7197-40f6-b2fb-91a6b99f1d05-2015-12-29 09:58:14Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" - ], - "x-ms-correlation-request-id": [ - "eac030ab-eec5-4f24-a0e4-bcf449d2058f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095815Z:eac030ab-eec5-4f24-a0e4-bcf449d2058f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:14 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7193/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzE5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e87b2e6-52cd-4daa-974c-7cc702b35a2d-2015-12-29 09:58:14Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "008257c0-2012-4545-84e5-34f6c19b4a28" - ], - "x-ms-client-request-id": [ - "2e87b2e6-52cd-4daa-974c-7cc702b35a2d-2015-12-29 09:58:14Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" - ], - "x-ms-correlation-request-id": [ - "008257c0-2012-4545-84e5-34f6c19b4a28" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095815Z:008257c0-2012-4545-84e5-34f6c19b4a28" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:14 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7279/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzI3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf3ea005-4d4d-4da9-97cc-7a41a6a04c24-2015-12-29 09:58:15Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0ded74ed-0329-4d85-8f53-a3c45792f8dc" - ], - "x-ms-client-request-id": [ - "bf3ea005-4d4d-4da9-97cc-7a41a6a04c24-2015-12-29 09:58:15Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" - ], - "x-ms-correlation-request-id": [ - "0ded74ed-0329-4d85-8f53-a3c45792f8dc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095816Z:0ded74ed-0329-4d85-8f53-a3c45792f8dc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:16 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7537/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "def57fc0-89ae-4fba-b5ff-fdbd9dfd55c7-2015-12-29 09:58:16Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c06727f0-b9a4-454c-addd-15bc7c097651" - ], - "x-ms-client-request-id": [ - "def57fc0-89ae-4fba-b5ff-fdbd9dfd55c7-2015-12-29 09:58:16Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "c06727f0-b9a4-454c-addd-15bc7c097651" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095816Z:c06727f0-b9a4-454c-addd-15bc7c097651" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:16 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7542/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3dd23872-4203-4e3c-abe3-c7e776740de1-2015-12-29 09:58:16Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d55bcef3-92bd-47e9-84a2-3196eb0d7345" - ], - "x-ms-client-request-id": [ - "3dd23872-4203-4e3c-abe3-c7e776740de1-2015-12-29 09:58:16Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" - ], - "x-ms-correlation-request-id": [ - "d55bcef3-92bd-47e9-84a2-3196eb0d7345" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095818Z:d55bcef3-92bd-47e9-84a2-3196eb0d7345" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:18 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg7741/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzc0MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ce539b01-1544-4d9c-8702-8891b8445a27-2015-12-29 09:58:17Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0016e370-3bb3-42fd-ae3b-acab6ddf4ff0" - ], - "x-ms-client-request-id": [ - "ce539b01-1544-4d9c-8702-8891b8445a27-2015-12-29 09:58:17Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" - ], - "x-ms-correlation-request-id": [ - "0016e370-3bb3-42fd-ae3b-acab6ddf4ff0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095818Z:0016e370-3bb3-42fd-ae3b-acab6ddf4ff0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:18 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8298/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODI5OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ddc8e121-7ff3-4351-a692-5f5c6b69bb14-2015-12-29 09:58:18Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "51539945-54d2-43cd-b8e0-e9ea0b8749b0" - ], - "x-ms-client-request-id": [ - "ddc8e121-7ff3-4351-a692-5f5c6b69bb14-2015-12-29 09:58:18Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" - ], - "x-ms-correlation-request-id": [ - "51539945-54d2-43cd-b8e0-e9ea0b8749b0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095819Z:51539945-54d2-43cd-b8e0-e9ea0b8749b0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:19 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8383/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODM4My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "24a1fb8f-a272-4944-a673-9a5dc88531b8-2015-12-29 09:58:19Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "25045333-60d8-4543-a364-c96d90c24ad8" - ], - "x-ms-client-request-id": [ - "24a1fb8f-a272-4944-a673-9a5dc88531b8-2015-12-29 09:58:19Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" - ], - "x-ms-correlation-request-id": [ - "25045333-60d8-4543-a364-c96d90c24ad8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095819Z:25045333-60d8-4543-a364-c96d90c24ad8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:19 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8501/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODUwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "598dc5e8-3af2-4bfa-8851-a6ea5a6512ff-2015-12-29 09:58:19Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "06172988-0534-4960-bb28-98d6f1655ca9" - ], - "x-ms-client-request-id": [ - "598dc5e8-3af2-4bfa-8851-a6ea5a6512ff-2015-12-29 09:58:19Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" - ], - "x-ms-correlation-request-id": [ - "06172988-0534-4960-bb28-98d6f1655ca9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095820Z:06172988-0534-4960-bb28-98d6f1655ca9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8568/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODU2OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c1779d86-6a0a-4c7a-8b80-5af669daf3ef-2015-12-29 09:58:20Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c845d95a-fed9-4fff-bc4c-c90d8fe9c2c2" - ], - "x-ms-client-request-id": [ - "c1779d86-6a0a-4c7a-8b80-5af669daf3ef-2015-12-29 09:58:20Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" - ], - "x-ms-correlation-request-id": [ - "c845d95a-fed9-4fff-bc4c-c90d8fe9c2c2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095821Z:c845d95a-fed9-4fff-bc4c-c90d8fe9c2c2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:20 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg890/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f2fd7416-c758-480c-8bbe-46a55ea7e669-2015-12-29 09:58:20Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0cd82c74-dd20-45f6-a03e-7a926b201229" - ], - "x-ms-client-request-id": [ - "f2fd7416-c758-480c-8bbe-46a55ea7e669-2015-12-29 09:58:20Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], - "x-ms-correlation-request-id": [ - "0cd82c74-dd20-45f6-a03e-7a926b201229" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095821Z:0cd82c74-dd20-45f6-a03e-7a926b201229" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:21 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg8926/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODkyNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ca409a6d-6568-4a1e-995a-b624335d0fca-2015-12-29 09:58:21Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "811fd8a9-a0aa-4c0f-bbd2-b1c8aa4f1903" - ], - "x-ms-client-request-id": [ - "ca409a6d-6568-4a1e-995a-b624335d0fca-2015-12-29 09:58:21Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" - ], - "x-ms-correlation-request-id": [ - "811fd8a9-a0aa-4c0f-bbd2-b1c8aa4f1903" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095822Z:811fd8a9-a0aa-4c0f-bbd2-b1c8aa4f1903" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:21 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9020/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTAyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4769cc5c-6824-420e-a1b1-cbf6ff0ac1b7-2015-12-29 09:58:21Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "13ff195a-43d7-42ac-9e50-a5581ce2af4f" - ], - "x-ms-client-request-id": [ - "4769cc5c-6824-420e-a1b1-cbf6ff0ac1b7-2015-12-29 09:58:21Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" - ], - "x-ms-correlation-request-id": [ - "13ff195a-43d7-42ac-9e50-a5581ce2af4f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095822Z:13ff195a-43d7-42ac-9e50-a5581ce2af4f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:22 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9059/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTA1OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f993d0e1-316a-4614-81dd-7d731a43b7cb-2015-12-29 09:58:22Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "57881b0f-b978-44f8-b442-73851643461f" - ], - "x-ms-client-request-id": [ - "f993d0e1-316a-4614-81dd-7d731a43b7cb-2015-12-29 09:58:22Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" - ], - "x-ms-correlation-request-id": [ - "57881b0f-b978-44f8-b442-73851643461f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095823Z:57881b0f-b978-44f8-b442-73851643461f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:22 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9228/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "63caa77a-13c9-4164-9954-6cca31847560-2015-12-29 09:58:23Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "21e18ad0-a4e9-4e94-ab88-f390866cfd81" - ], - "x-ms-client-request-id": [ - "63caa77a-13c9-4164-9954-6cca31847560-2015-12-29 09:58:23Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" - ], - "x-ms-correlation-request-id": [ - "21e18ad0-a4e9-4e94-ab88-f390866cfd81" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095823Z:21e18ad0-a4e9-4e94-ab88-f390866cfd81" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:23 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9372/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTM3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "22ababc2-7501-4bb3-9445-aa8811de5955-2015-12-29 09:58:23Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0a0563f6-ba6c-4ba5-b3bd-e96eb2f92232" - ], - "x-ms-client-request-id": [ - "22ababc2-7501-4bb3-9445-aa8811de5955-2015-12-29 09:58:23Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" - ], - "x-ms-correlation-request-id": [ - "0a0563f6-ba6c-4ba5-b3bd-e96eb2f92232" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095824Z:0a0563f6-ba6c-4ba5-b3bd-e96eb2f92232" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:23 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9417/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTQxNy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1aa75f39-593a-495f-b8bd-51a7892e15ba-2015-12-29 09:58:24Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bf7569d9-ff12-46ad-ac0b-c75ac9101bf3" - ], - "x-ms-client-request-id": [ - "1aa75f39-593a-495f-b8bd-51a7892e15ba-2015-12-29 09:58:24Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" - ], - "x-ms-correlation-request-id": [ - "bf7569d9-ff12-46ad-ac0b-c75ac9101bf3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095825Z:bf7569d9-ff12-46ad-ac0b-c75ac9101bf3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:24 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg948/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e565d5a0-caff-4188-a9b3-3fbb3525e345-2015-12-29 09:58:24Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "62912f98-df01-4765-b195-c7b8f8337796" - ], - "x-ms-client-request-id": [ - "e565d5a0-caff-4188-a9b3-3fbb3525e345-2015-12-29 09:58:24Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" - ], - "x-ms-correlation-request-id": [ - "62912f98-df01-4765-b195-c7b8f8337796" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095825Z:62912f98-df01-4765-b195-c7b8f8337796" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:24 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9646/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTY0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a96c481e-1901-421e-a4a9-d24c7aa2ea23-2015-12-29 09:58:25Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "838518d9-041a-4aa2-ad87-72460943a4da" - ], - "x-ms-client-request-id": [ - "a96c481e-1901-421e-a4a9-d24c7aa2ea23-2015-12-29 09:58:25Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-correlation-request-id": [ - "838518d9-041a-4aa2-ad87-72460943a4da" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095826Z:838518d9-041a-4aa2-ad87-72460943a4da" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:25 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9667/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "28f423f0-80b4-4984-b073-37f321d81dd5-2015-12-29 09:58:26Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c05cd304-ef4b-4658-9f55-685107a24995" - ], - "x-ms-client-request-id": [ - "28f423f0-80b4-4984-b073-37f321d81dd5-2015-12-29 09:58:26Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" - ], - "x-ms-correlation-request-id": [ - "c05cd304-ef4b-4658-9f55-685107a24995" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095826Z:c05cd304-ef4b-4658-9f55-685107a24995" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:26 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg9696/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bc73e599-684c-446e-a949-bfa6d5ddf788-2015-12-29 09:58:26Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4164751a-ec16-47d0-9f16-e79fa7de79c5" - ], - "x-ms-client-request-id": [ - "bc73e599-684c-446e-a949-bfa6d5ddf788-2015-12-29 09:58:26Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" - ], - "x-ms-correlation-request-id": [ - "4164751a-ec16-47d0-9f16-e79fa7de79c5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095827Z:4164751a-ec16-47d0-9f16-e79fa7de79c5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:26 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Default-Networking/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTmV0d29ya2luZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13f13d78-f737-454d-85ac-2ebfbb04cb6c-2015-12-29 09:58:27Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d4c317b7-16b5-4c49-a0f8-f264aea8d5bb" - ], - "x-ms-client-request-id": [ - "13f13d78-f737-454d-85ac-2ebfbb04cb6c-2015-12-29 09:58:27Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-correlation-request-id": [ - "d4c317b7-16b5-4c49-a0f8-f264aea8d5bb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095828Z:d4c317b7-16b5-4c49-a0f8-f264aea8d5bb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Default-Storage-WestUS/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d5e40edd-3051-46b4-b301-4e401712c11d-2015-12-29 09:58:27Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0e319ea1-c552-4cb9-8452-7835f5f41c3d" - ], - "x-ms-client-request-id": [ - "d5e40edd-3051-46b4-b301-4e401712c11d-2015-12-29 09:58:27Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" - ], - "x-ms-correlation-request-id": [ - "0e319ea1-c552-4cb9-8452-7835f5f41c3d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095828Z:0e319ea1-c552-4cb9-8452-7835f5f41c3d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:27 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/E2Atesting/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0UyQXRlc3RpbmcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a44fe9dc-b2ac-4214-b1f4-d3ec5bb3181e-2015-12-29 09:58:28Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c215a4a6-a716-4cba-a089-f29b38aa842d" - ], - "x-ms-client-request-id": [ - "a44fe9dc-b2ac-4214-b1f4-d3ec5bb3181e-2015-12-29 09:58:28Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], - "x-ms-correlation-request-id": [ - "c215a4a6-a716-4cba-a089-f29b38aa842d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095829Z:c215a4a6-a716-4cba-a089-f29b38aa842d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:28 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Gen2RG/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0dlbjJSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dfc9d1bb-091a-45ed-9b39-32a3b8083ad6-2015-12-29 09:58:29Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Gen2Vault\",\r\n \"etag\": \"3f5e6f4b-26a5-4c53-a500-a1c04e4e5962\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/Gen2RG/providers/Microsoft.RecoveryServicesBVTD2/vaults/Gen2Vault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "425" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "587ea200-ad7f-4ccb-85f8-c313c0116926" - ], - "x-ms-client-request-id": [ - "dfc9d1bb-091a-45ed-9b39-32a3b8083ad6-2015-12-29 09:58:29Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" - ], - "x-ms-correlation-request-id": [ - "587ea200-ad7f-4ccb-85f8-c313c0116926" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095829Z:587ea200-ad7f-4ccb-85f8-c313c0116926" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/latestrg/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2xhdGVzdHJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fffb77a5-b190-4c8a-b312-eb6ed129b420-2015-12-29 09:58:29Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "897891fb-3146-4dff-890e-e622c91ac67e" - ], - "x-ms-client-request-id": [ - "fffb77a5-b190-4c8a-b312-eb6ed129b420-2015-12-29 09:58:29Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "897891fb-3146-4dff-890e-e622c91ac67e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095830Z:897891fb-3146-4dff-890e-e622c91ac67e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:29 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/LJSam/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL0xKU2FtL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f8e22bc-c2ef-4fda-8661-6cb8df040016-2015-12-29 09:58:30Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c13859b8-384d-496b-8afa-5c8269eb3273" - ], - "x-ms-client-request-id": [ - "3f8e22bc-c2ef-4fda-8661-6cb8df040016-2015-12-29 09:58:30Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" - ], - "x-ms-correlation-request-id": [ - "c13859b8-384d-496b-8afa-5c8269eb3273" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095830Z:c13859b8-384d-496b-8afa-5c8269eb3273" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:30 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/MukeshTestRG/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL011a2VzaFRlc3RSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c331664-df6e-49fa-9c52-d61d545bdf50-2015-12-29 09:58:30Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a8e9a0c7-7ae4-4b03-9c15-10413290a18a" - ], - "x-ms-client-request-id": [ - "2c331664-df6e-49fa-9c52-d61d545bdf50-2015-12-29 09:58:30Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-correlation-request-id": [ - "a8e9a0c7-7ae4-4b03-9c15-10413290a18a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095831Z:a8e9a0c7-7ae4-4b03-9c15-10413290a18a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:30 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/newe2arg/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL25ld2UyYXJnL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "538fa521-de3a-47a9-8cad-45fa1a4ad6ae-2015-12-29 09:58:31Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"newe2avault\",\r\n \"etag\": \"58d36a99-d839-415b-95ce-179c1f5781e9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/newe2arg/providers/Microsoft.RecoveryServicesBVTD2/vaults/newe2avault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "438" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "50c6c23c-0a6c-48c0-af7d-f942e6ff2ba9" - ], - "x-ms-client-request-id": [ - "538fa521-de3a-47a9-8cad-45fa1a4ad6ae-2015-12-29 09:58:31Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-correlation-request-id": [ - "50c6c23c-0a6c-48c0-af7d-f942e6ff2ba9" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095832Z:50c6c23c-0a6c-48c0-af7d-f942e6ff2ba9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:31 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-Southeast-Asia/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtMllFVUlLWE82QTRWN0RXS1o0RFBKTFVXWTdMWFRBNkdFNzJYUkFEU1BGRURYNzZWN1lTQS1Tb3V0aGVhc3QtQXNpYS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09462b17-d94f-4f17-aa47-53323bdb9cad-2015-12-29 09:58:31Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "01d17d80-c88d-4584-a60d-c3245d34d984" - ], - "x-ms-client-request-id": [ - "09462b17-d94f-4f17-aa47-53323bdb9cad-2015-12-29 09:58:31Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-correlation-request-id": [ - "01d17d80-c88d-4584-a60d-c3245d34d984" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095832Z:01d17d80-c88d-4584-a60d-c3245d34d984" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:31 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServices-2YEUIKXO6A4V7DWKZ4DPJLUWY7LXTA6GE72XRADSPFEDX76V7YSA-West-US/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtMllFVUlLWE82QTRWN0RXS1o0RFBKTFVXWTdMWFRBNkdFNzJYUkFEU1BGRURYNzZWN1lTQS1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5ca3f129-dc9f-4cac-b9fc-8a09f589a703-2015-12-29 09:58:32Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4339bcf3-5a01-48b7-905e-77ca26a4dd35" - ], - "x-ms-client-request-id": [ - "5ca3f129-dc9f-4cac-b9fc-8a09f589a703-2015-12-29 09:58:32Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-correlation-request-id": [ - "4339bcf3-5a01-48b7-905e-77ca26a4dd35" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095833Z:4339bcf3-5a01-48b7-905e-77ca26a4dd35" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:32 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServicesRG/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXNSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "62d5204a-a59b-423b-9a1d-d15e4ff30786-2015-12-29 09:58:33Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"ramjsingRSVault\",\r\n \"etag\": \"f63cc902-6055-4cb1-bacf-84029988df75\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/RecoveryServicesRG/providers/Microsoft.RecoveryServicesBVTD2/vaults/ramjsingRSVault\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "449" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "81542213-f1e8-4be9-a403-482a57c6c6ad" - ], - "x-ms-client-request-id": [ - "62d5204a-a59b-423b-9a1d-d15e4ff30786-2015-12-29 09:58:33Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-correlation-request-id": [ - "81542213-f1e8-4be9-a403-482a57c6c6ad" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095833Z:81542213-f1e8-4be9-a403-482a57c6c6ad" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:33 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b7662323-6cb9-4b7b-bbf1-a0af3e4a8ee0-2015-12-29 09:58:33Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"v1\",\r\n \"etag\": \"c98ef3e7-2f00-4179-ab5e-31384b2066dc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/v1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "408" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "37c72395-88d3-465b-8fe5-a61ef5f89e18" - ], - "x-ms-client-request-id": [ - "b7662323-6cb9-4b7b-bbf1-a0af3e4a8ee0-2015-12-29 09:58:33Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" - ], - "x-ms-correlation-request-id": [ - "37c72395-88d3-465b-8fe5-a61ef5f89e18" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095834Z:37c72395-88d3-465b-8fe5-a61ef5f89e18" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:33 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/rg2testE2Afor10_2/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3JnMnRlc3RFMkFmb3IxMF8yL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "110342c7-e167-4641-b77c-4f13c5ed7109-2015-12-29 09:58:34Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "89c81c92-c927-47af-8fef-d88efb6bcb55" - ], - "x-ms-client-request-id": [ - "110342c7-e167-4641-b77c-4f13c5ed7109-2015-12-29 09:58:34Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" - ], - "x-ms-correlation-request-id": [ - "89c81c92-c927-47af-8fef-d88efb6bcb55" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095835Z:89c81c92-c927-47af-8fef-d88efb6bcb55" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:34 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1MwMS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7254765c-4ae3-4d86-8c1c-9ff5f36e40d8-2015-12-29 09:58:34Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S01-1-2-3-4-5\",\r\n \"etag\": \"7e6c145b-2d4b-43b9-8975-b8593d8d1510\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S01-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9aa45d9b-a3c8-4c53-81af-70100f60f670" - ], - "x-ms-client-request-id": [ - "7254765c-4ae3-4d86-8c1c-9ff5f36e40d8-2015-12-29 09:58:34Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" - ], - "x-ms-correlation-request-id": [ - "9aa45d9b-a3c8-4c53-81af-70100f60f670" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095835Z:9aa45d9b-a3c8-4c53-81af-70100f60f670" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:34 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-2776b10c/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1MwMS0yNzc2YjEwYy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ea8f3cac-c142-47c7-8ca5-072b845e3b65-2015-12-29 09:58:35Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S01-2776b10c-e054-40a5-99d7-8d79ec48fd2c\",\r\n \"etag\": \"aec9a420-83ee-4e3e-843a-3c408e99520c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S01-2776b10c/providers/Microsoft.RecoveryServicesBVTD2/vaults/S01-2776b10c-e054-40a5-99d7-8d79ec48fd2c\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "493" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "46415b41-7aee-4e8d-8016-05d037d01ac5" - ], - "x-ms-client-request-id": [ - "ea8f3cac-c142-47c7-8ca5-072b845e3b65-2015-12-29 09:58:35Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" - ], - "x-ms-correlation-request-id": [ - "46415b41-7aee-4e8d-8016-05d037d01ac5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095836Z:46415b41-7aee-4e8d-8016-05d037d01ac5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:35 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S101-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1MxMDEtMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6fef9e47-be29-449e-a4d9-112d40f317cd-2015-12-29 09:58:35Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S101-1-2-3-4-5\",\r\n \"etag\": \"d29e6190-bc30-41d7-9c5f-5dc98571bb49\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S101-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S101-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "435" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a502eac3-931d-4365-bee8-224dd7c92de6" - ], - "x-ms-client-request-id": [ - "6fef9e47-be29-449e-a4d9-112d40f317cd-2015-12-29 09:58:35Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" - ], - "x-ms-correlation-request-id": [ - "a502eac3-931d-4365-bee8-224dd7c92de6" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095836Z:a502eac3-931d-4365-bee8-224dd7c92de6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:35 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S102-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1MxMDItMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0ac09ba8-75c2-41d8-a7ce-7cbf409dcdd2-2015-12-29 09:58:36Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S102-1-2-3-4-5\",\r\n \"etag\": \"24738a5a-3389-4ed8-b132-fda9d1e07f8f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S102-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S102-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "435" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "149917ce-459c-4278-9103-28a9557a1ebb" - ], - "x-ms-client-request-id": [ - "0ac09ba8-75c2-41d8-a7ce-7cbf409dcdd2-2015-12-29 09:58:36Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" - ], - "x-ms-correlation-request-id": [ - "149917ce-459c-4278-9103-28a9557a1ebb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095837Z:149917ce-459c-4278-9103-28a9557a1ebb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S53-4cddea50/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M1My00Y2RkZWE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fc0c7e3a-6b7b-4de5-8771-71c050806853-2015-12-29 09:58:37Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S53-4cddea50-f93d-4012-b635-b9913cd61600\",\r\n \"etag\": \"890472ff-bba9-4c13-9604-b7913f3247be\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S53-4cddea50/providers/Microsoft.RecoveryServicesBVTD2/vaults/S53-4cddea50-f93d-4012-b635-b9913cd61600\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "493" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f11f7237-c7c3-4fcf-8e1d-4f45b1b5c859" - ], - "x-ms-client-request-id": [ - "fc0c7e3a-6b7b-4de5-8771-71c050806853-2015-12-29 09:58:37Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" - ], - "x-ms-correlation-request-id": [ - "f11f7237-c7c3-4fcf-8e1d-4f45b1b5c859" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095837Z:f11f7237-c7c3-4fcf-8e1d-4f45b1b5c859" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:36 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/s57-1234/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3M1Ny0xMjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a395eb98-3fe9-41c1-bf8f-7b5978e5f9da-2015-12-29 09:58:37Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"s57-1234-5678-1234-5678\",\r\n \"etag\": \"d1534454-361f-421b-b6d4-af641e4fc7e1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/s57-1234/providers/Microsoft.RecoveryServicesBVTD2/vaults/s57-1234-5678-1234-5678\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "455" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d439a15c-5a80-40ee-a011-dc33cc2b72be" - ], - "x-ms-client-request-id": [ - "a395eb98-3fe9-41c1-bf8f-7b5978e5f9da-2015-12-29 09:58:37Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" - ], - "x-ms-correlation-request-id": [ - "d439a15c-5a80-40ee-a011-dc33cc2b72be" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095838Z:d439a15c-5a80-40ee-a011-dc33cc2b72be" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S59-92fc5083/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M1OS05MmZjNTA4My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ead2e87-0d23-4b84-8a06-b87e8cf088dc-2015-12-29 09:58:38Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S59-92fc5083-0e86-4e87-8b4a-ad2b771ee41d\",\r\n \"etag\": \"8afde1e2-0ed2-4764-94a2-df1e4b6174ac\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S59-92fc5083/providers/Microsoft.RecoveryServicesBVTD2/vaults/S59-92fc5083-0e86-4e87-8b4a-ad2b771ee41d\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "493" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "47100018-33a4-4810-9fea-330a08e32bd5" - ], - "x-ms-client-request-id": [ - "4ead2e87-0d23-4b84-8a06-b87e8cf088dc-2015-12-29 09:58:38Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" - ], - "x-ms-correlation-request-id": [ - "47100018-33a4-4810-9fea-330a08e32bd5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095839Z:47100018-33a4-4810-9fea-330a08e32bd5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:38 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S5-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M1LWZiMzY1Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15332e62-3362-42ec-a70b-2ecee9696ffd-2015-12-29 09:58:38Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S5-fb365396-4715-41b6-b25c-cedf78501fa7\",\r\n \"etag\": \"51ce51ed-2de8-4ee8-8174-125e5b3e12fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S5-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults/S5-fb365396-4715-41b6-b25c-cedf78501fa7\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "490" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bca6b8f8-117d-4179-b621-a2b7651e6eb8" - ], - "x-ms-client-request-id": [ - "15332e62-3362-42ec-a70b-2ecee9696ffd-2015-12-29 09:58:38Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" - ], - "x-ms-correlation-request-id": [ - "bca6b8f8-117d-4179-b621-a2b7651e6eb8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095839Z:bca6b8f8-117d-4179-b621-a2b7651e6eb8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:39 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S8-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M4LWZiMzY1Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e6ab0f1d-5d45-4209-aafc-8d6643810bcb-2015-12-29 09:58:39Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "43a0ee59-5f3b-434c-a9c1-767b96e6c1fc" - ], - "x-ms-client-request-id": [ - "e6ab0f1d-5d45-4209-aafc-8d6643810bcb-2015-12-29 09:58:39Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" - ], - "x-ms-correlation-request-id": [ - "43a0ee59-5f3b-434c-a9c1-767b96e6c1fc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095840Z:43a0ee59-5f3b-434c-a9c1-767b96e6c1fc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:39 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4dcded69-9dc6-42ae-8246-7e27209438cd-2015-12-29 09:58:40Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"b57647f5-7c38-4f90-a874-912b56ca18be\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults\",\r\n \"sku\": null\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S91-1-2-3-4-5\",\r\n \"etag\": \"5c02c467-6d43-4b64-99dc-b73f201240b9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S91-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "792" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "45425c2c-abf0-4806-a626-a8032ca7f3a2" - ], - "x-ms-client-request-id": [ - "4dcded69-9dc6-42ae-8246-7e27209438cd-2015-12-29 09:58:40Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" - ], - "x-ms-correlation-request-id": [ - "45425c2c-abf0-4806-a626-a8032ca7f3a2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095840Z:45425c2c-abf0-4806-a626-a8032ca7f3a2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:40 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "065fc0b5-63da-41e9-a8c2-95993629d437-2015-12-29 09:58:49Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"b57647f5-7c38-4f90-a874-912b56ca18be\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults\",\r\n \"sku\": null\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S91-1-2-3-4-5\",\r\n \"etag\": \"5c02c467-6d43-4b64-99dc-b73f201240b9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S91-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "792" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d70cb43b-af71-4b95-bc0b-c4fd5ddbca4c" - ], - "x-ms-client-request-id": [ - "065fc0b5-63da-41e9-a8c2-95993629d437-2015-12-29 09:58:49Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" - ], - "x-ms-correlation-request-id": [ - "d70cb43b-af71-4b95-bc0b-c4fd5ddbca4c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095849Z:d70cb43b-af71-4b95-bc0b-c4fd5ddbca4c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:49 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4bbed493-2552-49e0-8d70-16d9d207daf6-2015-12-29 09:58:52Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S91-1-2-3-4-5\",\r\n \"etag\": \"5c02c467-6d43-4b64-99dc-b73f201240b9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/S91-1-2-3-4-5\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "432" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eb3d2647-4045-4193-9e49-b7318b480222" - ], - "x-ms-client-request-id": [ - "4bbed493-2552-49e0-8d70-16d9d207daf6-2015-12-29 09:58:52Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" - ], - "x-ms-correlation-request-id": [ - "eb3d2647-4045-4193-9e49-b7318b480222" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095853Z:eb3d2647-4045-4193-9e49-b7318b480222" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:53 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S96-12/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5Ni0xMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a5be43d-bab8-4c59-a48a-0478e1cbd849-2015-12-29 09:58:40Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S96-12-34-56-78-90\",\r\n \"etag\": \"a592bb44-8661-45b6-84cc-81ce124fc36d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S96-12/providers/Microsoft.RecoveryServicesBVTD2/vaults/S96-12-34-56-78-90\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "443" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "94cf3fb3-6f5c-4f52-aecc-1afc6d8fa868" - ], - "x-ms-client-request-id": [ - "3a5be43d-bab8-4c59-a48a-0478e1cbd849-2015-12-29 09:58:40Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" - ], - "x-ms-correlation-request-id": [ - "94cf3fb3-6f5c-4f52-aecc-1afc6d8fa868" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095841Z:94cf3fb3-6f5c-4f52-aecc-1afc6d8fa868" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:40 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S9-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5LWZiMzY1Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "272d9623-8669-43ab-8293-b0a96a0c6630-2015-12-29 09:58:41Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"S9-fb365396-4715-41b6-b25c-cedf78501fa7\",\r\n \"etag\": \"73fb232c-7cee-4614-a406-f32ebb057139\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S9-fb365396/providers/Microsoft.RecoveryServicesBVTD2/vaults/S9-fb365396-4715-41b6-b25c-cedf78501fa7\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "490" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6b184a33-9377-4d61-b45e-48b65e935cd0" - ], - "x-ms-client-request-id": [ - "272d9623-8669-43ab-8293-b0a96a0c6630-2015-12-29 09:58:41Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], - "x-ms-correlation-request-id": [ - "6b184a33-9377-4d61-b45e-48b65e935cd0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095841Z:6b184a33-9377-4d61-b45e-48b65e935cd0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:41 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/sakulkar/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3Nha3Vsa2FyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ff1755af-f486-4e4f-b6fd-576c12170c24-2015-12-29 09:58:41Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4c5263cc-faa8-4837-afa2-1d363f5e0cba" - ], - "x-ms-client-request-id": [ - "ff1755af-f486-4e4f-b6fd-576c12170c24-2015-12-29 09:58:41Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" - ], - "x-ms-correlation-request-id": [ - "4c5263cc-faa8-4837-afa2-1d363f5e0cba" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095842Z:4c5263cc-faa8-4837-afa2-1d363f5e0cba" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:41 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/sam1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "daa23d5c-ff18-4c69-9d06-8334b7dd708d-2015-12-29 09:58:42Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "19eae655-ea99-446e-8556-b8e83cff8c1e" - ], - "x-ms-client-request-id": [ - "daa23d5c-ff18-4c69-9d06-8334b7dd708d-2015-12-29 09:58:42Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" - ], - "x-ms-correlation-request-id": [ - "19eae655-ea99-446e-8556-b8e83cff8c1e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095843Z:19eae655-ea99-446e-8556-b8e83cff8c1e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samb2a/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbWIyYS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fd8fe9a5-c5f0-4ccf-ab32-bfc94092b25b-2015-12-29 09:58:43Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f43e9623-ed25-41fb-9a75-80109ba02022" - ], - "x-ms-client-request-id": [ - "fd8fe9a5-c5f0-4ccf-ab32-bfc94092b25b-2015-12-29 09:58:43Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" - ], - "x-ms-correlation-request-id": [ - "f43e9623-ed25-41fb-9a75-80109ba02022" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095843Z:f43e9623-ed25-41fb-9a75-80109ba02022" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:43 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhita/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbWhpdGEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf488409-94c4-411c-8d9c-503189e86f36-2015-12-29 09:58:43Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "79638edc-4bb3-4f59-bfe5-b5c2e893ae5c" - ], - "x-ms-client-request-id": [ - "bf488409-94c4-411c-8d9c-503189e86f36-2015-12-29 09:58:43Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" - ], - "x-ms-correlation-request-id": [ - "79638edc-4bb3-4f59-bfe5-b5c2e893ae5c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095844Z:79638edc-4bb3-4f59-bfe5-b5c2e893ae5c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:44 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhitaE2A/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbWhpdGFFMkEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "922dfd34-8889-47c0-be93-48b70d446bd0-2015-12-29 09:58:44Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5cc720a7-a8c4-490d-b04a-1f47475ba490" - ], - "x-ms-client-request-id": [ - "922dfd34-8889-47c0-be93-48b70d446bd0-2015-12-29 09:58:44Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" - ], - "x-ms-correlation-request-id": [ - "5cc720a7-a8c4-490d-b04a-1f47475ba490" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095844Z:5cc720a7-a8c4-490d-b04a-1f47475ba490" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:44 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/samhitae2e/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbWhpdGFlMmUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1b825d51-e9bd-4ff6-9fd6-2dddadca9f24-2015-12-29 09:58:44Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "32ebe4d6-5f7e-4e41-835d-eeb1bb2fa14f" - ], - "x-ms-client-request-id": [ - "1b825d51-e9bd-4ff6-9fd6-2dddadca9f24-2015-12-29 09:58:44Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" - ], - "x-ms-correlation-request-id": [ - "32ebe4d6-5f7e-4e41-835d-eeb1bb2fa14f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095845Z:32ebe4d6-5f7e-4e41-835d-eeb1bb2fa14f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/TemplateStore/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1RlbXBsYXRlU3RvcmUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b349c784-a6af-4130-a0e7-b8ea6c0ad915-2015-12-29 09:58:45Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "11b9dde7-e9ff-4207-9c87-4c6a2b673f92" - ], - "x-ms-client-request-id": [ - "b349c784-a6af-4130-a0e7-b8ea6c0ad915-2015-12-29 09:58:45Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" - ], - "x-ms-correlation-request-id": [ - "11b9dde7-e9ff-4207-9c87-4c6a2b673f92" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095846Z:11b9dde7-e9ff-4207-9c87-4c6a2b673f92" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:45 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-sea/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3ZhdWx0cy1yZXNvdXJjZWdyb3VwLXNlYS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d1be01f-0e20-44e1-b11d-06f5de370d71-2015-12-29 09:58:45Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"vault-bvt-arm-sea-02\",\r\n \"etag\": \"48b087d9-d41f-48e9-8cf0-2efe22423b33\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-sea/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault-bvt-arm-sea-02\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "472" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "362945e9-c3cd-4c0a-9734-ff7cab610f6f" - ], - "x-ms-client-request-id": [ - "7d1be01f-0e20-44e1-b11d-06f5de370d71-2015-12-29 09:58:45Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" - ], - "x-ms-correlation-request-id": [ - "362945e9-c3cd-4c0a-9734-ff7cab610f6f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095846Z:362945e9-c3cd-4c0a-9734-ff7cab610f6f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-wus/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3ZhdWx0cy1yZXNvdXJjZWdyb3VwLXd1cy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d72f1dc2-8cf5-40f3-aeb8-5bf7692ad002-2015-12-29 09:58:46Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"vault-bvt-arm-wus-01\",\r\n \"etag\": \"24418af8-ea28-44cd-998f-fcf064d2e728\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/vaults-resourcegroup-wus/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault-bvt-arm-wus-01\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", - "ResponseHeaders": { - "Content-Length": [ - "465" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "26351237-e8a5-4738-844e-02acb15a4d0c" - ], - "x-ms-client-request-id": [ - "d72f1dc2-8cf5-40f3-aeb8-5bf7692ad002-2015-12-29 09:58:46Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" - ], - "x-ms-correlation-request-id": [ - "26351237-e8a5-4738-844e-02acb15a4d0c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095847Z:26351237-e8a5-4738-844e-02acb15a4d0c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:46 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/VS-testacc201-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1ZTLXRlc3RhY2MyMDEtR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4a2f69-cff7-46f9-abae-35e640915e0e-2015-12-29 09:58:47Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ac135802-bc44-4ed5-a1b0-25f19fd05ca0" - ], - "x-ms-client-request-id": [ - "4a4a2f69-cff7-46f9-abae-35e640915e0e-2015-12-29 09:58:47Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" - ], - "x-ms-correlation-request-id": [ - "ac135802-bc44-4ed5-a1b0-25f19fd05ca0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095848Z:ac135802-bc44-4ed5-a1b0-25f19fd05ca0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 29 Dec 2015 09:58:48 GMT" - ], - "Server": [ - "Microsoft-IIS/8.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/VS-testacc203-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1ZTLXRlc3RhY2MyMDMtR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "399cf4fa-7754-417e-9977-1b3cb3409677-2015-12-29 09:58:48Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "03e4e10c-625b-451a-9cf5-8aaa65de9867" - ], - "x-ms-client-request-id": [ - "399cf4fa-7754-417e-9977-1b3cb3409677-2015-12-29 09:58:48Z-P" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14959" ], "x-ms-correlation-request-id": [ - "03e4e10c-625b-451a-9cf5-8aaa65de9867" + "eb574396-dffa-4658-949a-4901d8470796" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095849Z:03e4e10c-625b-451a-9cf5-8aaa65de9867" + "CENTRALUS:20160319T124543Z:eb574396-dffa-4658-949a-4901d8470796" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:58:48 GMT" + "Sat, 19 Mar 2016 12:45:42 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -6658,8 +1138,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.SiteRecoveryBVTD2/SiteRecoveryVault/v2?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2U5ZTZmMDctNjIyNS00ZDEwLThmZDQtNWYwMjM2YzI4ZjVhL3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlNpdGVSZWNvdmVyeUJWVEQyL1NpdGVSZWNvdmVyeVZhdWx0L3YyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -6670,7 +1150,7 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.SiteRecoveryVault.SiteRecoveryVaultManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -6685,10 +1165,10 @@ "no-cache" ], "x-ms-request-id": [ - "43d6835d-84e9-4cd7-921e-81fe3392ae5e" + "b6baa1de-8b1d-412c-ba1d-d4a002014226" ], "x-ms-client-request-id": [ - "6bf60a5b-777e-4bdb-937b-2fe1ea9548e3" + "9fbc8231-8ce1-4e59-959a-855d117f2f8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6697,16 +1177,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "43d6835d-84e9-4cd7-921e-81fe3392ae5e" + "b6baa1de-8b1d-412c-ba1d-d4a002014226" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151229T095852Z:43d6835d-84e9-4cd7-921e-81fe3392ae5e" + "CENTRALUS:20160319T124548Z:b6baa1de-8b1d-412c-ba1d-d4a002014226" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 29 Dec 2015 09:58:52 GMT" + "Sat, 19 Mar 2016 12:45:48 GMT" ] }, "StatusCode": 200 @@ -6714,6 +1194,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "cfead826-670f-4c45-8f3f-cfee4217d76b" + "SubscriptionId": "3e9e6f07-6225-4d10-8fd4-5f0236c28f5a" } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config index 9da72d968f60..6efb1d9f4d31 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config @@ -5,7 +5,7 @@ - + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index 13478a15058e..09198e8cfb0b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -53,7 +53,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.8-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.3-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -137,7 +137,7 @@ - + @@ -177,7 +177,7 @@ - + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Microsoft.Azure.Commands.SiteRecovery.dll-help.xml b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Microsoft.Azure.Commands.SiteRecovery.dll-help.xml index b1587a41b74d..f91b644828e4 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Microsoft.Azure.Commands.SiteRecovery.dll-help.xml +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Microsoft.Azure.Commands.SiteRecovery.dll-help.xml @@ -5465,4 +5465,1568 @@ + + + + Update-AzureRmSiteRecoveryServer + + + Refreshes the Azure Site Recovery Server + + + + + Update + AzureRmSiteRecoveryServer + + + + + + + + + Update-AzureRmSiteRecoveryServer + + Server + + Azure Site Recovery Server object + + ASRServer + + + + + + + Server + + Azure Site Recovery Server object + + + ASRServer + + ASRServer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Get-AzureRmSiteRecoveryRecoveryPlan + + + Retrieves Azure Site Recovery Recovery Plan. + + + + + Get + AzureRmSiteRecoveryRecoveryPlan + + + + + + + + + Get-AzureRmSiteRecoveryRecoveryPlan + + FriendlyName + + Friendly name of the Recovery Plan. + + string + + + Path + + File path to save the Recovery Plan. + + string + + + + Get-AzureRmSiteRecoveryRecoveryPlan + + Name + + Name of the Recovery Plan. + + string + + + Path + + File path to save the Recovery Plan. + + string + + + + + + + FriendlyName + + Friendly name of the Recovery Plan. + + + string + + string + + + + + + Name + + Name of the Recovery Plan. + + + string + + string + + + + + + Path + + File path to save the Recovery Plan. + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Remove-AzureRmSiteRecoveryRecoveryPlan + + + Removes Azure Site Recovery Recovery Plan. + + + + + Remove + AzureRmSiteRecoveryRecoveryPlan + + + + + + + + + Remove-AzureRmSiteRecoveryRecoveryPlan + + Name + + Name of the Recovery Plan. + + string + + + + Remove-AzureRmSiteRecoveryRecoveryPlan + + RecoveryPlan + + Azure Site Recovery Recovery Plan object. + + ASRRecoveryPlan + + + + + + + Name + + Name of the Recovery Plan. + + + string + + string + + + + + + RecoveryPlan + + Azure Site Recovery Recovery Plan object. + + + ASRRecoveryPlan + + ASRRecoveryPlan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edit-AzureRmSiteRecoveryRecoveryPlan + + + Edits Azure Site Recovery Recovery Plan. + + + + + Edit + AzureRmSiteRecoveryRecoveryPlan + + + + + + + + + Edit-AzureRmSiteRecoveryRecoveryPlan + + AddProtectedEntities + + Helps in adding list of Azure Site Recovery Protected entities. + + ASRProtectionEntity[] + + + Group + + Azure Site Recovery Recovery Plan group, + + ASRRecoveryPlanGroup + + + RecoveryPlan + + Azure Site Recovery Recovery Plan object. + + ASRRecoveryPlan + + + Group + + Azure Site Recovery Recovery Plan group, + + ASRRecoveryPlanGroup + + + + Edit-AzureRmSiteRecoveryRecoveryPlan + + AppendGroup + + Appends Group to the Recovery Plan object. + + + + RecoveryPlan + + Azure Site Recovery Recovery Plan object. + + ASRRecoveryPlan + + + Group + + Azure Site Recovery Recovery Plan group, + + ASRRecoveryPlanGroup + + + + Edit-AzureRmSiteRecoveryRecoveryPlan + + RecoveryPlan + + Azure Site Recovery Recovery Plan object. + + ASRRecoveryPlan + + + RemoveGroup + + Removes specified Azure Site Recovery Recovery Plan group. + + ASRRecoveryPlanGroup + + + Group + + Azure Site Recovery Recovery Plan group, + + ASRRecoveryPlanGroup + + + + Edit-AzureRmSiteRecoveryRecoveryPlan + + Group + + Azure Site Recovery Recovery Plan group, + + ASRRecoveryPlanGroup + + + RecoveryPlan + + Azure Site Recovery Recovery Plan object. + + ASRRecoveryPlan + + + RemoveProtectedEntities + + Helps in removing list of Protected entities from the Recovery Plan. + + ASRProtectionEntity[] + + + Group + + Azure Site Recovery Recovery Plan group, + + ASRRecoveryPlanGroup + + + + + + + AddProtectedEntities + + Helps in adding list of Azure Site Recovery Protected entities. + + + ASRProtectionEntity[] + + ASRProtectionEntity[] + + + + + + AppendGroup + + Appends Group to the Recovery Plan object. + + + SwitchParameter + + SwitchParameter + + + + + + Group + + Azure Site Recovery Recovery Plan group, + + + ASRRecoveryPlanGroup + + ASRRecoveryPlanGroup + + + + + + RecoveryPlan + + Azure Site Recovery Recovery Plan object. + + + ASRRecoveryPlan + + ASRRecoveryPlan + + + + + + RemoveGroup + + Removes specified Azure Site Recovery Recovery Plan group. + + + ASRRecoveryPlanGroup + + ASRRecoveryPlanGroup + + + + + + RemoveProtectedEntities + + Helps in removing list of Protected entities from the Recovery Plan. + + + ASRProtectionEntity[] + + ASRProtectionEntity[] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Update-AzureRmSiteRecoveryRecoveryPlan + + + Updates Azure Site Recovery Recovery Plan. + + + + + Update + AzureRmSiteRecoveryRecoveryPlan + + + + + + + + + Update-AzureRmSiteRecoveryRecoveryPlan + + Path + + Path of the Recovery Plan file. + + string + + + + Update-AzureRmSiteRecoveryRecoveryPlan + + RecoveryPlan + + Azure Site Recovery Recovery Plan object. + + ASRRecoveryPlan + + + + + + + Path + + Path of the Recovery Plan file. + + + string + + string + + + + + + RecoveryPlan + + Azure Site Recovery Recovery Plan object. + + + ASRRecoveryPlan + + ASRRecoveryPlan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + New-AzureRmSiteRecoveryRecoveryPlan + + + Creates a new Azure Site Recovery Recovery Plan. + + + + + New + AzureRmSiteRecoveryRecoveryPlan + + + + + + + + + New-AzureRmSiteRecoveryRecoveryPlan + + Path + + Path of Recovery Plan file to pick. + + string + + + + New-AzureRmSiteRecoveryRecoveryPlan + + FailoverDeploymentModel + + Failover deployment model - can be Classic or ResourceManager. + + string + + + Azure + + Switch parameter to refer Azure as recovery. + + SiwtchParameter + + + Name + + Name of the Recovery Plan. + + string + + + PrimaryServer + + Azure Site Recovery primary server. + + ASRServer + + + ProtectionEntityList + + List of Azure Site Recovery Protection entities. + + ASRProtectionEntity[] + + + + New-AzureRmSiteRecoveryRecoveryPlan + + Name + + Name of the Recovery Plan. + + string + + + PrimaryServer + + Azure Site Recovery primary server. + + ASRServer + + + RecoveryServer + + Azure Site Recovery recovery server. + + ASRServer + + + ProtectionEntityList + + List of Azure Site Recovery Protection entities. + + ASRProtectionEntity[] + + + + New-AzureRmSiteRecoveryRecoveryPlan + + Azure + + Switch parameter to refer Azure as recovery. + + SiwtchParameter + + + PrimarySite + + Azure Site Recovery primary site. + + ASRSite + + + ProtectionEntityList + + List of Azure Site Recovery Protection entities. + + ASRProtectionEntity[] + + + FailoverDeploymentModel + + Failover deployment model - can be Classic or ResourceManager. + + string + + + Name + + Name of the Recovery Plan. + + string + + + + + + + Azure + + Switch parameter to refer Azure as recovery. + + + SiwtchParameter + + SiwtchParameter + + + + + + FailoverDeploymentModel + + Failover deployment model - can be Classic or ResourceManager. + + + string + + string + + + + + + Name + + Name of the Recovery Plan. + + + string + + string + + + + + + Path + + Path of Recovery Plan file to pick. + + + string + + string + + + + + + PrimaryServer + + Azure Site Recovery primary server. + + + ASRServer + + ASRServer + + + + + + PrimarySite + + Azure Site Recovery primary site. + + + ASRSite + + ASRSite + + + + + + ProtectionEntityList + + List of Azure Site Recovery Protection entities. + + + ASRProtectionEntity[] + + ASRProtectionEntity[] + + + + + + RecoveryServer + + Azure Site Recovery recovery server. + + + ASRServer + + ASRServer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Get-AzureRmSiteRecoveryStorageClassification + + + Retrieves Azure Site Recovery Storage classifications. + + + + + Get + AzureRmSiteRecoveryStorageClassification + + + + + + + + + Get-AzureRmSiteRecoveryStorageClassification + + FriendlyName + + Friendly name of the Storage classification. + + string + + + + Get-AzureRmSiteRecoveryStorageClassification + + Name + + Name of the Storage Classification. + + string + + + + Get-AzureRmSiteRecoveryStorageClassification + + Server + + Azure Site Recovery Server object. + + ASRServer + + + + + + + FriendlyName + + Friendly name of the Storage classification. + + + string + + string + + + + + + Name + + Name of the Storage Classification. + + + string + + string + + + + + + Server + + Azure Site Recovery Server object. + + + ASRServer + + ASRServer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Get-AzureRmSiteRecoveryStorageClassificationMapping + + + Retrieves Azure Site Recovery Storage Classification mappings. + + + + + Get + AzureRmSiteRecoveryStorageClassificationMapping + + + + + + + + + Get-AzureRmSiteRecoveryStorageClassificationMapping + + Name + + Name of the Storage Classification Mapping. + + string + + + + + + + Name + + Name of the Storage Classification Mapping. + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + New-AzureRmSiteRecoveryStorageClassificationMapping + + + Creates a new Azure Site Recovery Storage Classification mapping. + + + + + New + AzureRmSiteRecoveryStorageClassificationMapping + + + + + + + + + New-AzureRmSiteRecoveryStorageClassificationMapping + + PrimaryStorageClassification + + Azure Site Recovery Primary Storage Classification mapping. + + ASRStorageClassification + + + RecoveryStorageClassification + + Azure Site Recovery Recovery Storage Classification mapping. + + ASRStorageClassification + + + + + + + PrimaryStorageClassification + + Azure Site Recovery Primary Storage Classification mapping. + + + ASRStorageClassification + + ASRStorageClassification + + + + + + RecoveryStorageClassification + + Azure Site Recovery Recovery Storage Classification mapping. + + + ASRStorageClassification + + ASRStorageClassification + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Remove-AzureRmSiteRecoveryStorageClassificationMapping + + + Removes Azure Site Recovery Storage Classification Mapping. + + + + + Remove + AzureRmSiteRecoveryStorageClassificationMapping + + + + + + + + + Remove-AzureRmSiteRecoveryStorageClassificationMapping + + StorageClassificationMapping + + Azure Site Recovery Storage Classification mapping object. + + ASRStorageClassificationMapping + + + + + + + StorageClassificationMapping + + Azure Site Recovery Storage Classification mapping object. + + + ASRStorageClassificationMapping + + ASRStorageClassificationMapping + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/UpdateAzureSiteRecoveryServer.cs similarity index 100% rename from src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RefreshAzureSiteRecoveryServer.cs rename to src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/UpdateAzureSiteRecoveryServer.cs diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureSiteRecoveryStorageClassificationMapping.cs similarity index 100% rename from src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureRmSiteRecoveryStorageClassificationMapping.cs rename to src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Storage/Classification/NewAzureSiteRecoveryStorageClassificationMapping.cs diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config index c7712d542f03..940870dbb305 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config @@ -4,7 +4,7 @@ - + From facf9bf2d82945ee057243778ae62320667aef28 Mon Sep 17 00:00:00 2001 From: vivsriaus Date: Mon, 21 Mar 2016 11:31:48 -0700 Subject: [PATCH 37/46] Use hard-coded api version for Policy cmdlets --- .../Cmdlets/Components/Constants.cs | 5 +++++ .../Implementation/Policy/GetAzurePolicyAssignment.cs | 10 +++------- .../Implementation/Policy/GetAzurePolicyDefinition.cs | 8 ++------ .../Implementation/Policy/NewAzurePolicyAssignment.cs | 5 ++--- .../Implementation/Policy/NewAzurePolicyDefinition.cs | 5 ++--- .../Policy/RemoveAzurePolicyAssignment.cs | 6 ++---- .../Policy/RemoveAzurePolicyDefinition.cs | 6 ++---- .../Implementation/Policy/SetAzurePolicyAssignment.cs | 7 +++---- .../Implementation/Policy/SetAzurePolicyDefinition.cs | 7 +++---- 9 files changed, 24 insertions(+), 35 deletions(-) diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Components/Constants.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Components/Constants.cs index 50b26704be71..9a6fe6e57b11 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Components/Constants.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Components/Constants.cs @@ -54,6 +54,11 @@ public static class Constants /// public static readonly string DefaultApiVersion = "2015-01-01"; + /// + /// The default policy API version. + /// + public static readonly string PolicyApiVersion = "2015-10-01-preview"; + /// /// The move action. /// diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/GetAzurePolicyAssignment.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/GetAzurePolicyAssignment.cs index 2be4dda2b71b..6e4bcabc787e 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/GetAzurePolicyAssignment.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/GetAzurePolicyAssignment.cs @@ -100,17 +100,13 @@ private async Task> GetResources() { string resourceId = this.Id ?? this.GetResourceId(); - var apiVersion = await this - .DetermineApiVersion(resourceId: resourceId) - .ConfigureAwait(continueOnCapturedContext: false); - if (IsResourceGet(resourceId)) { var resource = await this .GetResourcesClient() .GetResource( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, cancellationToken: this.CancellationToken.Value, odataQuery: null) .ConfigureAwait(continueOnCapturedContext: false); @@ -126,7 +122,7 @@ private async Task> GetResources() .GetResourcesClient() .ListObjectColleciton( resourceCollectionId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, cancellationToken: this.CancellationToken.Value, odataQuery: filter) .ConfigureAwait(continueOnCapturedContext: false); @@ -141,7 +137,7 @@ private async Task> GetResources() .GetResourcesClient() .ListObjectColleciton( resourceCollectionId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, cancellationToken: this.CancellationToken.Value, odataQuery: filter) .ConfigureAwait(continueOnCapturedContext: false); diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/GetAzurePolicyDefinition.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/GetAzurePolicyDefinition.cs index b9e286285e6d..7c6c5731478e 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/GetAzurePolicyDefinition.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/GetAzurePolicyDefinition.cs @@ -85,17 +85,13 @@ private async Task> GetResources() { string resourceId = this.Id ?? this.GetResourceId(); - var apiVersion = await this - .DetermineApiVersion(resourceId: resourceId) - .ConfigureAwait(continueOnCapturedContext: false); - if (!string.IsNullOrEmpty(ResourceIdUtility.GetResourceName(resourceId))) { var resource = await this .GetResourcesClient() .GetResource( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, cancellationToken: this.CancellationToken.Value) .ConfigureAwait(continueOnCapturedContext: false); ResponseWithContinuation retVal; @@ -109,7 +105,7 @@ private async Task> GetResources() .GetResourcesClient() .ListObjectColleciton( resourceCollectionId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, cancellationToken: this.CancellationToken.Value) .ConfigureAwait(continueOnCapturedContext: false); } diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/NewAzurePolicyAssignment.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/NewAzurePolicyAssignment.cs index 462cb1e8d861..e2e1684b4e15 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/NewAzurePolicyAssignment.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/NewAzurePolicyAssignment.cs @@ -68,12 +68,11 @@ protected override void OnProcessRecord() throw new PSInvalidOperationException("The supplied PolicyDefinition object is invalid."); } string resourceId = GetResourceId(); - var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result; var operationResult = this.GetResourcesClient() .PutResource( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, resource: this.GetResource(), cancellationToken: this.CancellationToken.Value, odataQuery: null) @@ -82,7 +81,7 @@ protected override void OnProcessRecord() var managementUri = this.GetResourcesClient() .GetResourceManagementRequestUri( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, odataQuery: null); var activity = string.Format("PUT {0}", managementUri.PathAndQuery); diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/NewAzurePolicyDefinition.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/NewAzurePolicyDefinition.cs index 7ab1e0b730b5..aa4660480f62 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/NewAzurePolicyDefinition.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/NewAzurePolicyDefinition.cs @@ -66,12 +66,11 @@ protected override void OnProcessRecord() { base.OnProcessRecord(); string resourceId = GetResourceId(); - var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result; var operationResult = this.GetResourcesClient() .PutResource( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, resource: this.GetResource(), cancellationToken: this.CancellationToken.Value, odataQuery: null) @@ -80,7 +79,7 @@ protected override void OnProcessRecord() var managementUri = this.GetResourcesClient() .GetResourceManagementRequestUri( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, odataQuery: null); var activity = string.Format("PUT {0}", managementUri.PathAndQuery); diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/RemoveAzurePolicyAssignment.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/RemoveAzurePolicyAssignment.cs index 107ce04308cc..5f44adf56655 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/RemoveAzurePolicyAssignment.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/RemoveAzurePolicyAssignment.cs @@ -85,12 +85,10 @@ private void RunCmdlet() resourceId, () => { - var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result; - var operationResult = this.GetResourcesClient() .DeleteResource( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, cancellationToken: this.CancellationToken.Value, odataQuery: null) .Result; @@ -98,7 +96,7 @@ private void RunCmdlet() var managementUri = this.GetResourcesClient() .GetResourceManagementRequestUri( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, odataQuery: null); var activity = string.Format("DELETE {0}", managementUri.PathAndQuery); diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/RemoveAzurePolicyDefinition.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/RemoveAzurePolicyDefinition.cs index 688de1bd7c68..592ee9e7eb5c 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/RemoveAzurePolicyDefinition.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/RemoveAzurePolicyDefinition.cs @@ -78,12 +78,10 @@ private void RunCmdlet() resourceId, () => { - var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result; - var operationResult = this.GetResourcesClient() .DeleteResource( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, cancellationToken: this.CancellationToken.Value, odataQuery: null) .Result; @@ -91,7 +89,7 @@ private void RunCmdlet() var managementUri = this.GetResourcesClient() .GetResourceManagementRequestUri( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, odataQuery: null); var activity = string.Format("DELETE {0}", managementUri.PathAndQuery); diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/SetAzurePolicyAssignment.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/SetAzurePolicyAssignment.cs index 6f048287165d..f47d32c0c386 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/SetAzurePolicyAssignment.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/SetAzurePolicyAssignment.cs @@ -76,13 +76,12 @@ protected override void OnProcessRecord() { base.OnProcessRecord(); string resourceId = this.Id ?? this.GetResourceId(); - var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result; var operationResult = this.GetResourcesClient() .PutResource( resourceId: resourceId, - apiVersion: apiVersion, - resource: this.GetResource(resourceId, apiVersion), + apiVersion: Constants.PolicyApiVersion, + resource: this.GetResource(resourceId, Constants.PolicyApiVersion), cancellationToken: this.CancellationToken.Value, odataQuery: null) .Result; @@ -90,7 +89,7 @@ protected override void OnProcessRecord() var managementUri = this.GetResourcesClient() .GetResourceManagementRequestUri( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, odataQuery: null); var activity = string.Format("PUT {0}", managementUri.PathAndQuery); diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/SetAzurePolicyDefinition.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/SetAzurePolicyDefinition.cs index 24fc04f2722d..3c39663a8721 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/SetAzurePolicyDefinition.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Policy/SetAzurePolicyDefinition.cs @@ -84,13 +84,12 @@ protected override void OnProcessRecord() { base.OnProcessRecord(); string resourceId = this.Id ?? this.GetResourceId(); - var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result; var operationResult = this.GetResourcesClient() .PutResource( resourceId: resourceId, - apiVersion: apiVersion, - resource: this.GetResource(resourceId, apiVersion), + apiVersion: Constants.PolicyApiVersion, + resource: this.GetResource(resourceId, Constants.PolicyApiVersion), cancellationToken: this.CancellationToken.Value, odataQuery: null) .Result; @@ -98,7 +97,7 @@ protected override void OnProcessRecord() var managementUri = this.GetResourcesClient() .GetResourceManagementRequestUri( resourceId: resourceId, - apiVersion: apiVersion, + apiVersion: Constants.PolicyApiVersion, odataQuery: null); var activity = string.Format("PUT {0}", managementUri.PathAndQuery); From 1c561ed63a2f5f14f41c9d4571a0750115529e93 Mon Sep 17 00:00:00 2001 From: pattipaka Date: Mon, 21 Mar 2016 14:21:08 -0700 Subject: [PATCH 38/46] Documentation changes and review comments. --- .../HDInsightTestBase.cs | 45 ++++- .../UnitTests/JobTests.cs | 124 +++++++++++- .../Commands.HDInsight/HDInsightCmdletBase.cs | 24 +++ .../GetAzureHDInsightJobOutputCommand.cs | 27 +-- ...AzureHDInsightSqoopJobDefinitionCommand.cs | 2 +- ...soft.Azure.Commands.HDInsight.dll-help.xml | 182 ++++++------------ .../Models/Job/AzureHDInsightJob.cs | 3 +- 7 files changed, 253 insertions(+), 154 deletions(-) diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/HDInsightTestBase.cs b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/HDInsightTestBase.cs index 536fcbb873c9..864401fa3e80 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/HDInsightTestBase.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/HDInsightTestBase.cs @@ -12,11 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System; +using System.Collections.Generic; using System.Management.Automation; using Hyak.Common; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Management.HDInsight.Models; -using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; @@ -41,9 +42,51 @@ public virtual void SetupTestsForManagement() public virtual void SetupTestsForData() { + hdinsightManagementMock = new Mock(); var cred = new BasicAuthenticationCloudCredentials {Username = "username", Password = "Password1!"}; hdinsightJobManagementMock = new Mock(ClusterName, cred); commandRuntimeMock = new Mock(); } + + public virtual void SetupManagementClientForJobTests() + { + // Update HDInsight Management properties for Job. + var cluster1 = new Cluster + { + Id = "/subscriptions/" + Guid.NewGuid() + "/resourceGroups/" + ResourceGroupName + "/providers/Microsoft.HDInsight/clusters/" + ClusterName, + Name = ClusterName, + Location = Location, + Properties = new ClusterGetProperties + { + ClusterVersion = "3.2", + ClusterState = "Running", + ClusterDefinition = new ClusterDefinition + { + ClusterType = ClusterType + }, + QuotaInfo = new QuotaInfo + { + CoresUsed = 24 + }, + OperatingSystemType = OSType.Windows, + ConnectivityEndpoints = new List { new ConnectivityEndpoint { Location = ClusterName, Name = "HTTPS" } } + } + }; + + var listresponse = new ClusterListResponse { Clusters = new[] { cluster1 } }; + hdinsightManagementMock.Setup(c => c.ListClusters()) + .Returns(listresponse) + .Verifiable(); + + hdinsightManagementMock.Setup(c => c.GetCluster(It.IsAny(), It.IsAny())) + .Returns(new List { cluster1 }) + .Verifiable(); + + var configurationResponse = new Dictionary(); + + hdinsightManagementMock.Setup(c => c.GetClusterConfigurations(It.IsAny(), It.IsAny(), It.IsAny())) + .Returns(configurationResponse) + .Verifiable(); + } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/UnitTests/JobTests.cs b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/UnitTests/JobTests.cs index 48795e6a46b5..fdf71e31b6bb 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/UnitTests/JobTests.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/UnitTests/JobTests.cs @@ -15,12 +15,14 @@ using System.Collections.Generic; using System.Management.Automation; using System.Net; +using System.Linq; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Management.HDInsight.Job.Models; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using Xunit; +using Microsoft.Azure.Management.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Test { @@ -195,14 +197,93 @@ public void CreateStreamingJob() job.Reducer == reducer && job.Defines.Count == defines.Count))); } - [Fact(Skip = "Test requires setting env variable, TODO remove that constraint")] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetJobWithIdProvided() + { + // Update HDInsight Management properties for Job. + SetupManagementClientForJobTests(); + + var jobId = "jobid_1984120_001"; + var cmdlet = GetJobCommandDefinition(); + cmdlet.JobId = jobId; + + // Setup Job Management mocks + var jobResponse = new JobGetResponse + { + JobDetail = new JobDetailRootJsonObject { Id = jobId, Status = new Status(), Userargs = new Userargs() } + }; + + hdinsightJobManagementMock.Setup(c => c.GetJob(It.IsAny())) + .Returns(jobResponse) + .Verifiable(); + + cmdlet.ExecuteCmdlet(); + commandRuntimeMock.VerifyAll(); + commandRuntimeMock.Verify( + f => + f.WriteObject(It.Is(job => job.JobId.Equals(jobId)))); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ListJobs() + { + // Update HDInsight Management properties for Job. + SetupManagementClientForJobTests(); + + var cmdlet = GetJobCommandDefinition(); + + // Setup Job Management mocks + var jobListResponse = GetJobListResponse(); + + hdinsightJobManagementMock.Setup(c => c.ListJobs()) + .Returns(jobListResponse) + .Verifiable(); + + cmdlet.ExecuteCmdlet(); + commandRuntimeMock.VerifyAll(); + commandRuntimeMock.Verify( + f => + f.WriteObject(It.Is>(job => job.ElementAt(0).Equals(jobListResponse.ElementAt(0).Detail.Id) && job.ElementAt(1).Equals(jobListResponse.ElementAt(1).Detail.Id)), true)); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ListJobsAfterJobId() + { + // Update HDInsight Management properties for Job. + SetupManagementClientForJobTests(); + + var cmdlet = GetJobCommandDefinition(); + cmdlet.NumOfJobs = 2; + + // Setup Job Management mocks + var jobListResponse = GetJobListResponse(); + + hdinsightJobManagementMock.Setup(c => c.ListJobsAfterJobId(It.IsAny(), It.IsAny())) + .Returns(jobListResponse) + .Verifiable(); + + cmdlet.ExecuteCmdlet(); + commandRuntimeMock.VerifyAll(); + commandRuntimeMock.Verify( + f => + f.WriteObject(It.Is>(job => job.ElementAt(0).JobId.Equals(jobListResponse.ElementAt(0).Detail.Id) && job.ElementAt(1).JobId.Equals(jobListResponse.ElementAt(1).Detail.Id)), true)); + } + + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void StartJob() { + // Update HDInsight Management properties for Job. + SetupManagementClientForJobTests(); + var cmdlet = new StartAzureHDInsightJobCommand { CommandRuntime = commandRuntimeMock.Object, HDInsightJobClient = hdinsightJobManagementMock.Object, + HDInsightManagementClient = hdinsightManagementMock.Object, HttpCredential = new PSCredential("httpuser", string.Format("Password1!").ConvertToSecureString()), ClusterName = ClusterName }; @@ -246,7 +327,9 @@ public void StartJob() { Completed = "false", User = cmdlet.HttpCredential.UserName, - Id = jobid + Id = jobid, + Status = new Status(), + Userargs = new Userargs() } }; hdinsightJobManagementMock.Setup(c => c.GetJob(jobsub.JobSubmissionJsonResponse.Id)).Returns(getresponse).Verifiable(); @@ -259,5 +342,42 @@ public void StartJob() It.Is( job => job.Cluster == ClusterName && job.JobId == jobid && job.Completed == "false"))); } + + public JobListResponse GetJobListResponse() + { + var jobListobject1 = new JobListJsonObject + { + Detail = new JobDetailRootJsonObject { Id = "jobid_1984120_001", Status = new Status(), Userargs = new Userargs() }, + Id = "jobid_1984120_001" + }; + + var jobListobject2 = new JobListJsonObject + { + Detail = new JobDetailRootJsonObject { Id = "jobid_1984120_002", Status = new Status(), Userargs = new Userargs() }, + Id = "jobid_1984120_002" + }; + + var jobListResponse = new JobListResponse + { + JobList = new List { jobListobject1, jobListobject2 }, + StatusCode = HttpStatusCode.OK + }; + + return jobListResponse; + } + + public GetAzureHDInsightJobCommand GetJobCommandDefinition() + { + var cmdlet = new GetAzureHDInsightJobCommand + { + CommandRuntime = commandRuntimeMock.Object, + HDInsightJobClient = hdinsightJobManagementMock.Object, + HDInsightManagementClient = hdinsightManagementMock.Object, + HttpCredential = new PSCredential("httpuser", string.Format("Password1!").ConvertToSecureString()), + ClusterName = ClusterName + }; + + return cmdlet; + } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/HDInsightCmdletBase.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/HDInsightCmdletBase.cs index aab9886ad8ef..485a5daa28e8 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/HDInsightCmdletBase.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/HDInsightCmdletBase.cs @@ -18,6 +18,7 @@ using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.Azure.Management.HDInsight; namespace Microsoft.Azure.Commands.HDInsight.Commands { @@ -99,5 +100,28 @@ protected string GetResourceGroupByAccountName(string clusterName) } } + protected AzureHDInsightDefaultStorageAccount GetDefaultStorageAccount(string resourceGroupName, string clusterName) + { + var result = HDInsightManagementClient.GetCluster(resourceGroupName, clusterName); + + if (result == null || result.Count == 0) + { + throw new CloudException(string.Format("Couldn't find cluster {0}", clusterName)); + } + + var cluster = result.FirstOrDefault(); + var configuration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, ConfigurationKey.CoreSite); + + var DefaultStorageAccount = ClusterConfigurationUtils.GetDefaultStorageAccountDetails( + configuration, + cluster.Properties.ClusterVersion); + + if (DefaultStorageAccount == null) + { + throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", clusterName)); + } + + return DefaultStorageAccount; + } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs index 0c156fcbb3f7..b2f2045f6cf8 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs @@ -133,34 +133,11 @@ private static string Convert(Stream stream) return text; } - internal IStorageAccess GetDefaultStorageAccess(string ResourceGroupName, string clusterName) + internal IStorageAccess GetDefaultStorageAccess(string resourceGroupName, string clusterName) { if (DefaultContainer == null && DefaultStorageAccountName == null && DefaultStorageAccountKey == null) { - var result = HDInsightManagementClient.GetCluster(ResourceGroupName, clusterName); - - if (result == null || result.Count == 0) - { - throw new CloudException(string.Format("Couldn't find cluster {0}", clusterName)); - } - - var cluster = result.FirstOrDefault(); - string resourceGroupName = ClusterConfigurationUtils.GetResourceGroupFromClusterId(cluster.Id); - var configuration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, "core-site"); - - if (configuration == null) - { - throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", clusterName)); - } - - var DefaultStorageAccount = ClusterConfigurationUtils.GetDefaultStorageAccountDetails( - configuration, - cluster.Properties.ClusterVersion); - - if (DefaultStorageAccount == null) - { - throw new CloudException(string.Format("Couldn't find storage information for cluster {0}", clusterName)); - } + var DefaultStorageAccount = GetDefaultStorageAccount(resourceGroupName, clusterName); DefaultContainer = DefaultStorageAccount.StorageContainerName; DefaultStorageAccountName = DefaultStorageAccount.StorageAccountName; diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs index d18004eadb6f..009f9c35850f 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightSqoopJobDefinitionCommand.cs @@ -55,7 +55,7 @@ public string Command set { job.Command = value; } } - [Parameter(HelpMessage = "The output location to use for the job.")] + [Parameter(HelpMessage = "The directory where the libjar can be found for the Sqoop job.")] public string LibDir { get { return job.LibDir; } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Microsoft.Azure.Commands.HDInsight.dll-help.xml b/src/ResourceManager/HDInsight/Commands.HDInsight/Microsoft.Azure.Commands.HDInsight.dll-help.xml index f53d38d6a195..0294d2f69ec6 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Microsoft.Azure.Commands.HDInsight.dll-help.xml +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Microsoft.Azure.Commands.HDInsight.dll-help.xml @@ -1157,6 +1157,13 @@ String + + NumOfJobs + + The number of jobs to retrieve. + + Int32 + ResourceGroupName @@ -1217,6 +1224,18 @@ + + NumOfJobs + + The number of jobs to retrieve. + + Int32 + + Int32 + + + + ResourceGroupName @@ -1253,7 +1272,7 @@ - + ClusterCredential The credentials with which to connect to the cluster. @@ -1332,7 +1351,7 @@ - Retrieves various types of job logs including Standard Output, Standard Error, Task logs, and a summary of the task logs. + Retrieves various types of job logs including Standard Output, Standard Error. @@ -1351,21 +1370,21 @@ String - + DefaultContainer The default container name. String - + DefaultStorageAccountName The default storage account name. String - + DefaultStorageAccountKey The default storage account key. @@ -1408,86 +1427,6 @@ String - - Get-AzureRmHDInsightJobOutput - - ClusterName - - The name of the cluster. - - String - - - JobId - - The JobID of the jobDetails to stop. - - String - - - DefaultContainer - - The default container name. - - String - - - DefaultStorageAccountName - - The default storage account name. - - String - - - DefaultStorageAccountKey - - The default storage account key. - - String - - - HttpCredential - - - - PSCredential - - - ResourceGroupName - - The name of the resource group. - - String - - - DownloadOutputType - - - - JobDownloadOutputType - - - Folder - - - - String - - - InformationAction - - - - ActionPreference - - - InformationVariable - - - - String - - @@ -1514,7 +1453,7 @@ - + DefaultContainer The default container name. @@ -1526,7 +1465,7 @@ - + DefaultStorageAccountName The default storage account name. @@ -1538,7 +1477,7 @@ - + DefaultStorageAccountKey The default storage account key. @@ -1610,31 +1549,7 @@ - - DownloadOutputType - - - - JobDownloadOutputType - - JobDownloadOutputType - - - - - - Folder - - - - String - - String - - - - - + ClusterCredential The credentials with which to connect to the cluster. @@ -2535,7 +2450,7 @@ String[] - + StatusFolder @@ -2577,21 +2492,21 @@ SwitchParameter - + DefaultContainer String - + DefaultStorageAccountName String - + DefaultStorageAccountKey @@ -2639,7 +2554,7 @@ - + StatusFolder @@ -2711,7 +2626,7 @@ - + DefaultContainer @@ -2723,7 +2638,7 @@ - + DefaultStorageAccountName @@ -2735,7 +2650,7 @@ - + DefaultStorageAccountKey @@ -4770,7 +4685,7 @@ New-AzureRmHDInsightSqoopJobDefinition - + Defines a new Sqoop job. @@ -4813,6 +4728,13 @@ String + + LibDir + + + + String + InformationAction @@ -4878,6 +4800,18 @@ + + LibDir + + + + String + + String + + + + InformationAction @@ -4986,7 +4920,7 @@ The command line environment for the mappers or the reducers. - String[] + Hashtable Defines @@ -5081,7 +5015,7 @@ The command line environment for the mappers or the reducers. - String[] + Hashtable String[] diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs index 542cf463fdcb..d97dfe6de9da 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Models/Job/AzureHDInsightJob.cs @@ -28,7 +28,8 @@ public class AzureHDInsightJob /// The cluster that the jobDetails was created against. public AzureHDInsightJob(JobDetailRootJsonObject jobDetails, string cluster) { - Cluster = cluster.Substring(0, cluster.IndexOf('.')); + var index = cluster.IndexOf('.'); + Cluster = index > -1 ? cluster.Substring(0, index) : cluster; HttpEndpoint = cluster; State = jobDetails.Status.State; JobId = jobDetails.Id; From 76a1628a4f23e679dffbf5accf6d3e4b9a496f39 Mon Sep 17 00:00:00 2001 From: sriramvu Date: Tue, 22 Mar 2016 04:24:37 +0530 Subject: [PATCH 39/46] Installed released / public NuGets --- .../Commands.RecoveryServices.Test.csproj | 6 +++--- .../Commands.RecoveryServices.Test/packages.config | 2 +- .../Commands.RecoveryServices.csproj | 6 +++--- .../Commands.RecoveryServices/packages.config | 2 +- .../Commands.SiteRecovery.Test.csproj | 4 ++-- .../Commands.SiteRecovery/Commands.SiteRecovery.csproj | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj index d6acc4f6dae7..f61a9576fc7b 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj @@ -44,9 +44,9 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - False - ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.3-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll + + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.2.0.0-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll + True False diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config index fcc3cc3c5824..c2bad1bd403e 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj index 792e3b46f21b..18d97d75a79c 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj @@ -47,9 +47,9 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - False - ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.3-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll + + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.2.0.0-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll + True ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config index 9db2a6dab2a4..91525a16ea51 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config @@ -3,7 +3,7 @@ - + diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj index 446b8bfa0152..4e6d1304723f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj @@ -44,9 +44,9 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - False + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.3-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll + True False diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index 17f321c6c0b6..ef72462182c9 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -47,9 +47,9 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - False + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.3-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll + True ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll From c3e1816adda034d0803a0ed0c3cd670d2ee63bfa Mon Sep 17 00:00:00 2001 From: sriramvu Date: Tue, 22 Mar 2016 05:18:41 +0530 Subject: [PATCH 40/46] updated the recorded json with latest test recorder version --- .../VaultCRUDTests.json | 314 +++++++++--------- 1 file changed, 157 insertions(+), 157 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/VaultCRUDTests.json b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/VaultCRUDTests.json index 12e7ee022ba7..aba2a4552641 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/VaultCRUDTests.json +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/VaultCRUDTests.json @@ -19,10 +19,10 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"960e6084-4e68-46d8-b35a-4f6ef37c2504\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"a33e85f2-4862-44b2-b418-9b90c0c8a99a\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "334" @@ -37,10 +37,10 @@ "no-cache" ], "x-ms-request-id": [ - "1426d02e-6622-48e1-9f68-05b2153c972b" + "f0a572aa-91c3-468d-bc4c-448a45fd87d0" ], "x-ms-client-request-id": [ - "aa6ed01d-4fd3-4f7a-bf23-942dedf6cabe" + "b674f4da-0b44-4a2e-a73e-50ddaa00839e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,16 +49,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "1426d02e-6622-48e1-9f68-05b2153c972b" + "f0a572aa-91c3-468d-bc4c-448a45fd87d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092236Z:1426d02e-6622-48e1-9f68-05b2153c972b" + "CENTRALUS:20160321T231251Z:f0a572aa-91c3-468d-bc4c-448a45fd87d0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:35 GMT" + "Mon, 21 Mar 2016 23:12:50 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -76,7 +76,7 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-1\",\r\n \"name\": \"Group-1\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-2\",\r\n \"name\": \"Group-2\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/Group-3\",\r\n \"name\": \"Group-3\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/grt6\",\r\n \"name\": \"grt6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/MobileEngagement\",\r\n \"name\": \"MobileEngagement\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/OI-Default-East-US\",\r\n \"name\": \"OI-Default-East-US\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"name\": \"RecoveryServices-MJMINP5VVOGSPSJCQSWG2RCLQNXXWHBWFO6AODTR6DWA3SAZ3JNQ-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1\",\r\n \"name\": \"rg1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg2\",\r\n \"name\": \"rg2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rgtest\",\r\n \"name\": \"rgtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/siteRecoveryPPECSMRG6\",\r\n \"name\": \"siteRecoveryPPECSMRG6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/testBilling\",\r\n \"name\": \"testBilling\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/VS-vso-9-25-Group\",\r\n \"name\": \"VS-vso-9-25-Group\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", @@ -94,16 +94,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-request-id": [ - "3627f2d0-c1f8-43ff-aeb8-c4ec094e524c" + "5c58b03e-e4d3-44e8-93cd-83c21429e586" ], "x-ms-correlation-request-id": [ - "3627f2d0-c1f8-43ff-aeb8-c4ec094e524c" + "5c58b03e-e4d3-44e8-93cd-83c21429e586" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092236Z:3627f2d0-c1f8-43ff-aeb8-c4ec094e524c" + "CENTRALUS:20160321T231252Z:5c58b03e-e4d3-44e8-93cd-83c21429e586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,7 +112,7 @@ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:36 GMT" + "Mon, 21 Mar 2016 23:12:51 GMT" ] }, "StatusCode": 200 @@ -124,13 +124,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6214c648-0954-4465-a3dc-7dfd87c934c8-2016-03-19 09:22:36Z-P" + "2e8c8b7a-4482-4a78-a30f-d73987a37f6b-2016-03-21 23:12:52Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -148,28 +148,28 @@ "no-cache" ], "x-ms-request-id": [ - "ecea9097-506d-4c1e-af2e-ff0a0abe09af" + "d11ff5f4-977a-4d4b-abb0-1f7bf4f7cbaa" ], "x-ms-client-request-id": [ - "6214c648-0954-4465-a3dc-7dfd87c934c8-2016-03-19 09:22:36Z-P" + "2e8c8b7a-4482-4a78-a30f-d73987a37f6b-2016-03-21 23:12:52Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14992" ], "x-ms-correlation-request-id": [ - "ecea9097-506d-4c1e-af2e-ff0a0abe09af" + "d11ff5f4-977a-4d4b-abb0-1f7bf4f7cbaa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092238Z:ecea9097-506d-4c1e-af2e-ff0a0abe09af" + "CENTRALUS:20160321T231253Z:d11ff5f4-977a-4d4b-abb0-1f7bf4f7cbaa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:38 GMT" + "Mon, 21 Mar 2016 23:12:52 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -184,13 +184,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69c89b46-a99a-436a-898f-2cb55e13dc97-2016-03-19 09:22:38Z-P" + "b232010f-859d-4da0-96c5-a47344857d44-2016-03-21 23:12:53Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -208,28 +208,28 @@ "no-cache" ], "x-ms-request-id": [ - "a7a44904-bedb-4421-b2dd-1883b593d244" + "57a04898-b30a-4ffd-8a57-ae2f5dd0af18" ], "x-ms-client-request-id": [ - "69c89b46-a99a-436a-898f-2cb55e13dc97-2016-03-19 09:22:38Z-P" + "b232010f-859d-4da0-96c5-a47344857d44-2016-03-21 23:12:53Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14991" ], "x-ms-correlation-request-id": [ - "a7a44904-bedb-4421-b2dd-1883b593d244" + "57a04898-b30a-4ffd-8a57-ae2f5dd0af18" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092239Z:a7a44904-bedb-4421-b2dd-1883b593d244" + "CENTRALUS:20160321T231254Z:57a04898-b30a-4ffd-8a57-ae2f5dd0af18" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:39 GMT" + "Mon, 21 Mar 2016 23:12:53 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -244,13 +244,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e5bc80d-9ac3-4ba1-b9b9-9f73b5a25e66-2016-03-19 09:22:39Z-P" + "4088ce66-01ba-411a-8ad2-6aa7a3322282-2016-03-21 23:12:54Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -268,28 +268,28 @@ "no-cache" ], "x-ms-request-id": [ - "81944d09-fe79-4202-b34f-005e91684aa2" + "578cd072-901c-49c8-b106-c7c182b2f0eb" ], "x-ms-client-request-id": [ - "3e5bc80d-9ac3-4ba1-b9b9-9f73b5a25e66-2016-03-19 09:22:39Z-P" + "4088ce66-01ba-411a-8ad2-6aa7a3322282-2016-03-21 23:12:54Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-correlation-request-id": [ - "81944d09-fe79-4202-b34f-005e91684aa2" + "578cd072-901c-49c8-b106-c7c182b2f0eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092239Z:81944d09-fe79-4202-b34f-005e91684aa2" + "CENTRALUS:20160321T231255Z:578cd072-901c-49c8-b106-c7c182b2f0eb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:39 GMT" + "Mon, 21 Mar 2016 23:12:54 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -304,13 +304,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e27c2919-9a1c-4749-b95b-0f77274d961e-2016-03-19 09:22:39Z-P" + "be89c2e1-fabd-424f-b20c-08df46a7ccfe-2016-03-21 23:12:55Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -328,28 +328,28 @@ "no-cache" ], "x-ms-request-id": [ - "a1d3a7f2-7f6e-4676-8eba-1128492f9bbc" + "6ff0e95f-41ff-4c8d-b717-053081a6f095" ], "x-ms-client-request-id": [ - "e27c2919-9a1c-4749-b95b-0f77274d961e-2016-03-19 09:22:39Z-P" + "be89c2e1-fabd-424f-b20c-08df46a7ccfe-2016-03-21 23:12:55Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-correlation-request-id": [ - "a1d3a7f2-7f6e-4676-8eba-1128492f9bbc" + "6ff0e95f-41ff-4c8d-b717-053081a6f095" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092240Z:a1d3a7f2-7f6e-4676-8eba-1128492f9bbc" + "CENTRALUS:20160321T231255Z:6ff0e95f-41ff-4c8d-b717-053081a6f095" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:40 GMT" + "Mon, 21 Mar 2016 23:12:54 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -364,13 +364,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1170b709-44a7-49a4-82e6-57bfd6ec8714-2016-03-19 09:22:40Z-P" + "6691157b-de92-430e-a87a-e50aca601ee1-2016-03-21 23:12:55Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -388,28 +388,28 @@ "no-cache" ], "x-ms-request-id": [ - "62ba51bc-03a0-4b53-985e-ca895f6344ae" + "ee73aa15-01d9-4309-8ec7-520c5c01139a" ], "x-ms-client-request-id": [ - "1170b709-44a7-49a4-82e6-57bfd6ec8714-2016-03-19 09:22:40Z-P" + "6691157b-de92-430e-a87a-e50aca601ee1-2016-03-21 23:12:55Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14988" ], "x-ms-correlation-request-id": [ - "62ba51bc-03a0-4b53-985e-ca895f6344ae" + "ee73aa15-01d9-4309-8ec7-520c5c01139a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092240Z:62ba51bc-03a0-4b53-985e-ca895f6344ae" + "CENTRALUS:20160321T231256Z:ee73aa15-01d9-4309-8ec7-520c5c01139a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:40 GMT" + "Mon, 21 Mar 2016 23:12:55 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -424,13 +424,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc2c288c-9962-49ac-b4c2-469a177cae88-2016-03-19 09:22:41Z-P" + "6b84f30c-8afd-4709-bc43-1be5478212bc-2016-03-21 23:12:56Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -448,28 +448,28 @@ "no-cache" ], "x-ms-request-id": [ - "0bc86cb6-74b8-456c-879e-290e6fdeab9d" + "2475d7e4-5c5d-4cfd-be84-a287f8cdc5ab" ], "x-ms-client-request-id": [ - "dc2c288c-9962-49ac-b4c2-469a177cae88-2016-03-19 09:22:41Z-P" + "6b84f30c-8afd-4709-bc43-1be5478212bc-2016-03-21 23:12:56Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14987" ], "x-ms-correlation-request-id": [ - "0bc86cb6-74b8-456c-879e-290e6fdeab9d" + "2475d7e4-5c5d-4cfd-be84-a287f8cdc5ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092241Z:0bc86cb6-74b8-456c-879e-290e6fdeab9d" + "CENTRALUS:20160321T231256Z:2475d7e4-5c5d-4cfd-be84-a287f8cdc5ab" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:41 GMT" + "Mon, 21 Mar 2016 23:12:55 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -484,13 +484,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a76b708-6086-40bb-ab04-46e7b258d7de-2016-03-19 09:22:41Z-P" + "ee6de668-36cf-4877-acd1-b06437b53d0e-2016-03-21 23:12:56Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -508,28 +508,28 @@ "no-cache" ], "x-ms-request-id": [ - "9fddfba1-e483-4141-b329-b5c2c094d501" + "ded42a99-99c8-471b-9ca1-57f463e908b9" ], "x-ms-client-request-id": [ - "4a76b708-6086-40bb-ab04-46e7b258d7de-2016-03-19 09:22:41Z-P" + "ee6de668-36cf-4877-acd1-b06437b53d0e-2016-03-21 23:12:56Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14986" ], "x-ms-correlation-request-id": [ - "9fddfba1-e483-4141-b329-b5c2c094d501" + "ded42a99-99c8-471b-9ca1-57f463e908b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092242Z:9fddfba1-e483-4141-b329-b5c2c094d501" + "CENTRALUS:20160321T231257Z:ded42a99-99c8-471b-9ca1-57f463e908b9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:41 GMT" + "Mon, 21 Mar 2016 23:12:56 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -544,13 +544,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98201a77-1cef-4353-954e-c3803ff87a70-2016-03-19 09:22:42Z-P" + "72d92f87-8df6-4e59-81d4-e369d3aa574a-2016-03-21 23:12:57Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -568,28 +568,28 @@ "no-cache" ], "x-ms-request-id": [ - "d831717f-9f0a-49c7-b6f4-d919dc2a19f5" + "594dd640-b0e6-4ac9-8bbd-49f9299627de" ], "x-ms-client-request-id": [ - "98201a77-1cef-4353-954e-c3803ff87a70-2016-03-19 09:22:42Z-P" + "72d92f87-8df6-4e59-81d4-e369d3aa574a-2016-03-21 23:12:57Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14985" ], "x-ms-correlation-request-id": [ - "d831717f-9f0a-49c7-b6f4-d919dc2a19f5" + "594dd640-b0e6-4ac9-8bbd-49f9299627de" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092242Z:d831717f-9f0a-49c7-b6f4-d919dc2a19f5" + "CENTRALUS:20160321T231258Z:594dd640-b0e6-4ac9-8bbd-49f9299627de" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:42 GMT" + "Mon, 21 Mar 2016 23:12:57 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -604,13 +604,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e28931e-7cad-4c81-bd5a-569098788282-2016-03-19 09:22:42Z-P" + "5b049fb6-e9e0-448a-ae41-bc61cae2970b-2016-03-21 23:12:58Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -628,28 +628,28 @@ "no-cache" ], "x-ms-request-id": [ - "fa10167a-80ce-4035-9dd3-e9ae8684a8ea" + "39379020-e9da-406d-99fa-0702693e9b7e" ], "x-ms-client-request-id": [ - "7e28931e-7cad-4c81-bd5a-569098788282-2016-03-19 09:22:42Z-P" + "5b049fb6-e9e0-448a-ae41-bc61cae2970b-2016-03-21 23:12:58Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14984" ], "x-ms-correlation-request-id": [ - "fa10167a-80ce-4035-9dd3-e9ae8684a8ea" + "39379020-e9da-406d-99fa-0702693e9b7e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092243Z:fa10167a-80ce-4035-9dd3-e9ae8684a8ea" + "CENTRALUS:20160321T231258Z:39379020-e9da-406d-99fa-0702693e9b7e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:42 GMT" + "Mon, 21 Mar 2016 23:12:57 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -664,16 +664,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf9cd1d3-3282-4d97-9999-4d8d7df24979-2016-03-19 09:22:43Z-P" + "09de65df-8f93-4eee-b65f-5c2c3646b7bb-2016-03-21 23:12:58Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"7d683461-90b0-439f-9f6e-97f84db76d17\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rs1\",\r\n \"etag\": \"09dda353-82f2-43b8-9a72-055e7970c924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rs1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"960e6084-4e68-46d8-b35a-4f6ef37c2504\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"vault1\",\r\n \"etag\": \"2dd4c58a-6e95-454d-a6b2-9aba2a6e8c5c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"7d683461-90b0-439f-9f6e-97f84db76d17\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rs1\",\r\n \"etag\": \"09dda353-82f2-43b8-9a72-055e7970c924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rs1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"a33e85f2-4862-44b2-b418-9b90c0c8a99a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"vault1\",\r\n \"etag\": \"2dd4c58a-6e95-454d-a6b2-9aba2a6e8c5c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", "ResponseHeaders": { "Content-Length": [ "1619" @@ -688,28 +688,28 @@ "no-cache" ], "x-ms-request-id": [ - "15c1d872-f1bd-4d2e-b773-11840547b799" + "c155e149-c893-4a75-8490-7e5f41913bbe" ], "x-ms-client-request-id": [ - "cf9cd1d3-3282-4d97-9999-4d8d7df24979-2016-03-19 09:22:43Z-P" + "09de65df-8f93-4eee-b65f-5c2c3646b7bb-2016-03-21 23:12:58Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14983" ], "x-ms-correlation-request-id": [ - "15c1d872-f1bd-4d2e-b773-11840547b799" + "c155e149-c893-4a75-8490-7e5f41913bbe" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092243Z:15c1d872-f1bd-4d2e-b773-11840547b799" + "CENTRALUS:20160321T231259Z:c155e149-c893-4a75-8490-7e5f41913bbe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:43 GMT" + "Mon, 21 Mar 2016 23:12:59 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -724,16 +724,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b00c882-9cc2-4985-9162-2ca814cc386b-2016-03-19 09:22:46Z-P" + "807b4e8f-1f49-4275-8af6-a4e34313d628-2016-03-21 23:13:02Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"7d683461-90b0-439f-9f6e-97f84db76d17\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rs1\",\r\n \"etag\": \"09dda353-82f2-43b8-9a72-055e7970c924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rs1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"960e6084-4e68-46d8-b35a-4f6ef37c2504\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"vault1\",\r\n \"etag\": \"2dd4c58a-6e95-454d-a6b2-9aba2a6e8c5c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"7d683461-90b0-439f-9f6e-97f84db76d17\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rs1\",\r\n \"etag\": \"09dda353-82f2-43b8-9a72-055e7970c924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rs1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"a33e85f2-4862-44b2-b418-9b90c0c8a99a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"vault1\",\r\n \"etag\": \"2dd4c58a-6e95-454d-a6b2-9aba2a6e8c5c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", "ResponseHeaders": { "Content-Length": [ "1619" @@ -748,28 +748,28 @@ "no-cache" ], "x-ms-request-id": [ - "8a5559d9-db75-4f0b-b9f1-fbfe3a3b94f8" + "0cbaf159-a9a3-4cce-acdd-feaa7569d631" ], "x-ms-client-request-id": [ - "8b00c882-9cc2-4985-9162-2ca814cc386b-2016-03-19 09:22:46Z-P" + "807b4e8f-1f49-4275-8af6-a4e34313d628-2016-03-21 23:13:02Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14977" ], "x-ms-correlation-request-id": [ - "8a5559d9-db75-4f0b-b9f1-fbfe3a3b94f8" + "0cbaf159-a9a3-4cce-acdd-feaa7569d631" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092247Z:8a5559d9-db75-4f0b-b9f1-fbfe3a3b94f8" + "CENTRALUS:20160321T231302Z:0cbaf159-a9a3-4cce-acdd-feaa7569d631" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:46 GMT" + "Mon, 21 Mar 2016 23:13:02 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -784,13 +784,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa60a720-fb8b-46ed-8112-e754f22f09db-2016-03-19 09:22:53Z-P" + "b8979bc3-63dc-4035-9fa9-c3cbc5a33be6-2016-03-21 23:13:05Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"7d683461-90b0-439f-9f6e-97f84db76d17\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"rs1\",\r\n \"etag\": \"09dda353-82f2-43b8-9a72-055e7970c924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rs1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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 \"location\": \"westus\",\r\n \"name\": \"vault1\",\r\n \"etag\": \"2dd4c58a-6e95-454d-a6b2-9aba2a6e8c5c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/3e9e6f07-6225-4d10-8fd4-5f0236c28f5a/resourceGroups/rg1/providers/Microsoft.RecoveryServicesBVTD2/vaults/vault1\",\r\n \"type\": \"Microsoft.RecoveryServicesBVTD2/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}", @@ -808,28 +808,28 @@ "no-cache" ], "x-ms-request-id": [ - "b17bfae2-2c21-45d7-96ef-22b9b8542b04" + "f32ae875-6018-4643-8ad8-a2d8a4718290" ], "x-ms-client-request-id": [ - "aa60a720-fb8b-46ed-8112-e754f22f09db-2016-03-19 09:22:53Z-P" + "b8979bc3-63dc-4035-9fa9-c3cbc5a33be6-2016-03-21 23:13:05Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14976" ], "x-ms-correlation-request-id": [ - "b17bfae2-2c21-45d7-96ef-22b9b8542b04" + "f32ae875-6018-4643-8ad8-a2d8a4718290" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092254Z:b17bfae2-2c21-45d7-96ef-22b9b8542b04" + "CENTRALUS:20160321T231306Z:f32ae875-6018-4643-8ad8-a2d8a4718290" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:53 GMT" + "Mon, 21 Mar 2016 23:13:05 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -844,13 +844,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "909abd83-7077-44e0-90c6-a7d8604142d0-2016-03-19 09:22:43Z-P" + "cf746f3a-f306-4569-a99f-6998429b6f02-2016-03-21 23:12:59Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -868,28 +868,28 @@ "no-cache" ], "x-ms-request-id": [ - "8d01d5b0-18ea-4535-9dc3-61bc7bf72e2d" + "471747c7-80ad-4b30-9b2c-3ffe1cd71de7" ], "x-ms-client-request-id": [ - "909abd83-7077-44e0-90c6-a7d8604142d0-2016-03-19 09:22:43Z-P" + "cf746f3a-f306-4569-a99f-6998429b6f02-2016-03-21 23:12:59Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14982" ], "x-ms-correlation-request-id": [ - "8d01d5b0-18ea-4535-9dc3-61bc7bf72e2d" + "471747c7-80ad-4b30-9b2c-3ffe1cd71de7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092244Z:8d01d5b0-18ea-4535-9dc3-61bc7bf72e2d" + "CENTRALUS:20160321T231259Z:471747c7-80ad-4b30-9b2c-3ffe1cd71de7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:43 GMT" + "Mon, 21 Mar 2016 23:12:59 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -904,13 +904,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d9e7520-beeb-4c2b-a172-36cb11dc0999-2016-03-19 09:22:44Z-P" + "4c596b34-80c8-4521-ac2f-20e4eba40af9-2016-03-21 23:12:59Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -928,28 +928,28 @@ "no-cache" ], "x-ms-request-id": [ - "346b0493-d39f-4663-815f-9cfdd12bed52" + "ae37578c-9bbf-4c83-bfa8-5efe8b8da898" ], "x-ms-client-request-id": [ - "7d9e7520-beeb-4c2b-a172-36cb11dc0999-2016-03-19 09:22:44Z-P" + "4c596b34-80c8-4521-ac2f-20e4eba40af9-2016-03-21 23:12:59Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14981" ], "x-ms-correlation-request-id": [ - "346b0493-d39f-4663-815f-9cfdd12bed52" + "ae37578c-9bbf-4c83-bfa8-5efe8b8da898" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092245Z:346b0493-d39f-4663-815f-9cfdd12bed52" + "CENTRALUS:20160321T231300Z:ae37578c-9bbf-4c83-bfa8-5efe8b8da898" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:44 GMT" + "Mon, 21 Mar 2016 23:13:00 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -964,13 +964,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ef20bae-e996-42a1-ae4c-34cf0341d3fa-2016-03-19 09:22:45Z-P" + "690586aa-4624-476a-bea6-483a97dd2c15-2016-03-21 23:13:00Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -988,28 +988,28 @@ "no-cache" ], "x-ms-request-id": [ - "e64e3356-87b7-428a-9e3a-697a078598c9" + "3544fe45-9bdc-4e8e-a4ec-54b117d3a78f" ], "x-ms-client-request-id": [ - "5ef20bae-e996-42a1-ae4c-34cf0341d3fa-2016-03-19 09:22:45Z-P" + "690586aa-4624-476a-bea6-483a97dd2c15-2016-03-21 23:13:00Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14980" ], "x-ms-correlation-request-id": [ - "e64e3356-87b7-428a-9e3a-697a078598c9" + "3544fe45-9bdc-4e8e-a4ec-54b117d3a78f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092245Z:e64e3356-87b7-428a-9e3a-697a078598c9" + "CENTRALUS:20160321T231301Z:3544fe45-9bdc-4e8e-a4ec-54b117d3a78f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:44 GMT" + "Mon, 21 Mar 2016 23:13:01 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1024,13 +1024,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "214bc507-6fe4-47a4-a5b0-27367a7635fe-2016-03-19 09:22:45Z-P" + "cca786ae-7f8f-4cd2-913c-d52286004d41-2016-03-21 23:13:01Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1048,28 +1048,28 @@ "no-cache" ], "x-ms-request-id": [ - "73046362-8f5a-41d3-9de2-7d88687a376a" + "c4b8dc6b-c505-44fc-a484-0afd69fe4b67" ], "x-ms-client-request-id": [ - "214bc507-6fe4-47a4-a5b0-27367a7635fe-2016-03-19 09:22:45Z-P" + "cca786ae-7f8f-4cd2-913c-d52286004d41-2016-03-21 23:13:01Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14979" ], "x-ms-correlation-request-id": [ - "73046362-8f5a-41d3-9de2-7d88687a376a" + "c4b8dc6b-c505-44fc-a484-0afd69fe4b67" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092246Z:73046362-8f5a-41d3-9de2-7d88687a376a" + "CENTRALUS:20160321T231301Z:c4b8dc6b-c505-44fc-a484-0afd69fe4b67" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:45 GMT" + "Mon, 21 Mar 2016 23:13:01 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1084,13 +1084,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb81ef57-0afa-4436-87fe-dda0f532710b-2016-03-19 09:22:46Z-P" + "83a299d8-ebdb-4697-bdbb-5a8aa66aba5a-2016-03-21 23:13:01Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1108,28 +1108,28 @@ "no-cache" ], "x-ms-request-id": [ - "e07c28f8-e2d1-4280-a4c2-244de90de4d7" + "01eed0bb-83df-4ee2-aac4-f42cb52946ca" ], "x-ms-client-request-id": [ - "eb81ef57-0afa-4436-87fe-dda0f532710b-2016-03-19 09:22:46Z-P" + "83a299d8-ebdb-4697-bdbb-5a8aa66aba5a-2016-03-21 23:13:01Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14978" ], "x-ms-correlation-request-id": [ - "e07c28f8-e2d1-4280-a4c2-244de90de4d7" + "01eed0bb-83df-4ee2-aac4-f42cb52946ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092246Z:e07c28f8-e2d1-4280-a4c2-244de90de4d7" + "CENTRALUS:20160321T231302Z:01eed0bb-83df-4ee2-aac4-f42cb52946ca" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:46 GMT" + "Mon, 21 Mar 2016 23:13:02 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1150,7 +1150,7 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/2.0.0.0" ] }, "ResponseBody": "", @@ -1165,10 +1165,10 @@ "no-cache" ], "x-ms-request-id": [ - "e22921b8-f05c-4736-a25b-ee76e058acfd" + "176cfcbf-8afa-4abf-a5b4-e195845be202" ], "x-ms-client-request-id": [ - "be9f7504-1725-4d61-b8d2-b32f6b492b64" + "5e4bfaf3-ed1a-4e3d-8012-100ff829b374" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1177,16 +1177,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "e22921b8-f05c-4736-a25b-ee76e058acfd" + "176cfcbf-8afa-4abf-a5b4-e195845be202" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160319T092253Z:e22921b8-f05c-4736-a25b-ee76e058acfd" + "CENTRALUS:20160321T231305Z:176cfcbf-8afa-4abf-a5b4-e195845be202" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Sat, 19 Mar 2016 09:22:53 GMT" + "Mon, 21 Mar 2016 23:13:05 GMT" ] }, "StatusCode": 200 From ae7cb17ae060ed05337015f037f1523cb3ab0b89 Mon Sep 17 00:00:00 2001 From: markcowl Date: Mon, 21 Mar 2016 19:09:44 -0700 Subject: [PATCH 41/46] fixing matcher for x-ms-version issue --- .../ScenarioTests/RecoveryServicesTestsBase.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTestsBase.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTestsBase.cs index c32c94bc0e5f..c0c63d1084ff 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTestsBase.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTestsBase.cs @@ -26,6 +26,7 @@ using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Microsoft.Azure.Commands.Common.Authentication.Models; using System; +using System.Collections.Generic; using System.Net.Http; using System.Reflection; @@ -50,6 +51,14 @@ protected void SetupManagementClients() protected void RunPowerShellTest(params string[] scripts) { + Dictionary d = new Dictionary(); + d.Add("Microsoft.Resources", null); + d.Add("Microsoft.Features", null); + d.Add("Microsoft.Authorization", null); + d.Add("Microsoft.Compute", null); + var providersToIgnore = new Dictionary(); + providersToIgnore.Add("Microsoft.Azure.Management.Resources.ResourceManagementClient", "2016-02-01"); + HttpMockServer.Matcher = new PermissiveRecordMatcherWithApiExclusion(true, d, providersToIgnore); using (UndoContext context = UndoContext.Current) { context.Start(TestUtilities.GetCallingClass(2), TestUtilities.GetCurrentMethodName(2)); From c408acd0ad60fe6d25a9dbdfbaa30ecdfd45dc35 Mon Sep 17 00:00:00 2001 From: sriramvu Date: Tue, 22 Mar 2016 09:16:38 +0530 Subject: [PATCH 42/46] bumped up SiteRecovery and RecoveryServices module versions --- .../RecoveryServices/AzureRM.RecoveryServices.psd1 | 2 +- src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 index 85284fc32e4c..1003d4621c12 100644 --- a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 +++ b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '1.0.6' +ModuleVersion = '1.0.7' # ID used to uniquely identify this module GUID = '4AA53B7E-FCFE-4E22-979C-9A4E6380DE58' diff --git a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 index 392e7f06546f..48b37d73eb1a 100644 --- a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 +++ b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '1.1.4' +ModuleVersion = '1.1.5' # ID used to uniquely identify this module GUID = 'd1de7560-48e1-48f3-bc8c-4eea3af2bbe1' From 97a8f378c887d12528ad7f14cc1a1041f9f7f53a Mon Sep 17 00:00:00 2001 From: Kexy Biscuit Date: Tue, 22 Mar 2016 19:17:47 +0800 Subject: [PATCH 43/46] Update links and fix typo --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 4d4811d81cfc..e06118be7fda 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ This repository contains a set of PowerShell cmdlets for developers and administrators to develop, deploy and manage Microsoft Azure applications. -* For documentation on how to build and deploy applications to Microsoft Azure please see the [Microsoft Azure Documentation Center](http://azure.microsoft.com/en-us/documentation/). -* For comprehensive documentation on the developer cmdlets see [How to install and configure Azure PowerShell](http://azure.microsoft.com/en-us/documentation/articles/install-configure-powershell/). +* For documentation on how to build and deploy applications to Microsoft Azure please see the [Microsoft Azure Documentation Center](https://azure.microsoft.com/en-us/documentation/). +* For comprehensive documentation on the developer cmdlets see [How to install and configure Azure PowerShell](https://azure.microsoft.com/en-us/documentation/articles/install-configure-powershell/). * For comprehensive documentation on the full set of Microsoft Azure cmdlets see [Microsoft Azure Management Center](http://go.microsoft.com/fwlink/?linkID=254459&clcid=0x409). ## Features @@ -55,17 +55,17 @@ For detail descriptions and examples of the cmdlets, type ## Supported Environments -* [Microsoft Azure](http://www.azure.microsoft.com) +* [Microsoft Azure](https://azure.microsoft.com) * [Azure Stack](https://azure.microsoft.com/en-us/overview/azure-stack/) -* [Windows Azure Pack](http://www.microsoft.com/en-us/server-cloud/windows-azure-pack.aspx) -* [Microsoft Azure China](http://www.windowsazure.cn/) +* [Windows Azure Pack](https://www.microsoft.com/en-us/server-cloud/windows-azure-pack.aspx) +* [Microsoft Azure China](https://www.azure.cn/) * [USGovernment](https://azure.microsoft.com/en-us/features/gov/) ## Installation ### Microsoft Web Platform Installer -1. Install [Microsoft Web Platform Installer](http://www.microsoft.com/web/downloads/platform.aspx). +1. Install [Microsoft Web Platform Installer](https://www.microsoft.com/web/downloads/platform.aspx). 2. Open Microsoft Web Platform Installer and search for __Microsoft Azure PowerShell__. 3. Install. @@ -84,7 +84,7 @@ You can also find the standalone installers for all the versions at [Downloads]( ### Supported PowerShell Versions -* [Windows Management Framework 3] (http://www.microsoft.com/en-us/download/details.aspx?id=34595) +* [Windows Management Framework 3] (https://www.microsoft.com/en-us/download/details.aspx?id=34595) * [Windows Management Framework 4] (https://www.microsoft.com/en-us/download/details.aspx?id=40855) * [Windows Management Framework 5] (https://www.microsoft.com/en-us/download/details.aspx?id=50395) @@ -92,7 +92,7 @@ You can also find the standalone installers for all the versions at [Downloads]( In general, following are the steps to start using Microsoft Azure PowerShell -* Get yourself authenticated with Microsoft Azure. For details, please check out [this article](http://azure.microsoft.com/en-us/documentation/articles/install-configure-powershell/). +* Get yourself authenticated with Microsoft Azure. For details, please check out [this article](https://azure.microsoft.com/en-us/documentation/articles/install-configure-powershell/). * Option 1: Login with your Microsoft account or Organizational account directly from PowerShell. Microsoft Azure Active Directory authentication is used in this case. No management certificate is needed. * Starting from 1.0.0, you can use ```Add-AzureRmAccount -Credential``` to avoid the browser pop up for Organizational account. * To use RDFE cmdlets, use ```Add-AzureAccount``` @@ -120,7 +120,7 @@ New-AzureRmResourceGroup -Name myresourceGroup -Location "West US" Add-AzureRmAccount -EnvironmentName AzureChinaCloud # use the cmdlets to manage your services/applications -New-AzureRmResourceGroup -Name myresourceGroup -Location "Chine East" +New-AzureRmResourceGroup -Name myresourceGroup -Location "China East" ``` ### Windows Azure Pack @@ -181,10 +181,10 @@ Be sure to check out the [Microsoft Azure Developer Forums on Stack Overflow](ht ## Contribute Code or Provide Feedback -If you would like to become an active contributor to this project please follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines](http://windowsazure.github.com/guidelines.html). +If you would like to become an active contributor to this project please follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines](https://azure.github.io/guidelines/). If you encounter any bugs with the library please file an issue in the [Issues](https://github.com/Azure/azure-powershell/issues) section of the project. # Learn More -* [Microsoft Azure Script Center](http://www.azure.microsoft.com/en-us/documentation/scripts/) +* [Microsoft Azure Script Center](https://azure.microsoft.com/en-us/documentation/scripts/) From 3444776127172bed6330d44835b3cc23f4550c37 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan Date: Tue, 22 Mar 2016 10:58:27 -0700 Subject: [PATCH 44/46] Fixed AzureBackup failing test. --- .../ScenarioTests/AzureBackupTestBase.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs index d806949e3339..f2a5ffa813df 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs @@ -24,6 +24,7 @@ using System.Net.Security; using System.Reflection; using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; +using System.Collections.Generic; namespace Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests { @@ -58,6 +59,14 @@ protected void SetupManagementClients() protected void RunPowerShellTest(params string[] scripts) { + Dictionary d = new Dictionary(); + d.Add("Microsoft.Resources", null); + d.Add("Microsoft.Features", null); + d.Add("Microsoft.Authorization", null); + d.Add("Microsoft.Compute", null); + var providersToIgnore = new Dictionary(); + providersToIgnore.Add("Microsoft.Azure.Management.Resources.ResourceManagementClient", "2016-02-01"); + HttpMockServer.Matcher = new PermissiveRecordMatcherWithApiExclusion(true, d, providersToIgnore); using (UndoContext context = UndoContext.Current) { context.Start(TestUtilities.GetCallingClass(2), TestUtilities.GetCurrentMethodName(2)); From c23868d734d0a9f6732f8f4926927e89266d8669 Mon Sep 17 00:00:00 2001 From: sriramvu Date: Wed, 23 Mar 2016 00:25:13 +0530 Subject: [PATCH 45/46] Revert "bumped up SiteRecovery and RecoveryServices module versions" This reverts commit c408acd0ad60fe6d25a9dbdfbaa30ecdfd45dc35. --- .../RecoveryServices/AzureRM.RecoveryServices.psd1 | 2 +- src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 index 1003d4621c12..85284fc32e4c 100644 --- a/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 +++ b/src/ResourceManager/RecoveryServices/AzureRM.RecoveryServices.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '1.0.7' +ModuleVersion = '1.0.6' # ID used to uniquely identify this module GUID = '4AA53B7E-FCFE-4E22-979C-9A4E6380DE58' diff --git a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 index 48b37d73eb1a..392e7f06546f 100644 --- a/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 +++ b/src/ResourceManager/SiteRecovery/AzureRM.SiteRecovery.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '1.1.5' +ModuleVersion = '1.1.4' # ID used to uniquely identify this module GUID = 'd1de7560-48e1-48f3-bc8c-4eea3af2bbe1' From af784d5de17f7a9a185bb8f5505af9a2ecdc1dfa Mon Sep 17 00:00:00 2001 From: sriramvu Date: Wed, 23 Mar 2016 00:41:01 +0530 Subject: [PATCH 46/46] taken PR Comments --- .../Vault/SetAzureSiteRecoveryVaultSettings.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs index d7fac1df924b..713764cfcb7f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/SetAzureSiteRecoveryVaultSettings.cs @@ -59,10 +59,10 @@ public override void ExecuteSiteRecoveryCmdlet() switch (this.ParameterSetName) { case ASRParameterSets.ASRVault: - this.setASRVaultContext(this.ASRVault); + this.SetASRVaultContext(this.ASRVault); break; case ASRParameterSets.ARSVault: - this.setARSVaultContext(this.ARSVault); + this.SetARSVaultContext(this.ARSVault); break; } } @@ -70,7 +70,7 @@ public override void ExecuteSiteRecoveryCmdlet() /// /// Set Azure Site Recovery Vault context. /// - private void setASRVaultContext(ASRVault asrVault) + private void SetASRVaultContext(ASRVault asrVault) { // Change the vault context RecoveryServicesClient.ChangeVaultContext(asrVault); @@ -86,7 +86,7 @@ private void setASRVaultContext(ASRVault asrVault) /// /// Set Azure Recovery Services Vault context. /// - private void setARSVaultContext(ARSVault arsVault) + private void SetARSVaultContext(ARSVault arsVault) { try { @@ -112,6 +112,7 @@ private void setARSVaultContext(ARSVault arsVault) } catch (InvalidOperationException e) { + WriteDebug(e.Message); } } }