From 8047d557e7e81006da5094a8b7cd35e34323c7af Mon Sep 17 00:00:00 2001 From: Apsara Selvanayagam Date: Mon, 14 Dec 2015 14:34:27 +0530 Subject: [PATCH 01/12] Fixing protectable items list call to honour Next Link --- .../PSSiteRecoveryProtectableItemsClient.cs | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectableItemsClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectableItemsClient.cs index 89bbbf261dc2..1a5e38adf977 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectableItemsClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectableItemsClient.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System; +using System.Collections.Generic; using Microsoft.Azure.Management.SiteRecovery; using Microsoft.Azure.Management.SiteRecovery.Models; @@ -31,10 +32,22 @@ public partial class PSRecoveryServicesClient public ProtectableItemListResponse GetAzureSiteRecoveryProtectableItem(string fabricName, string protectionContainerName) { - return - this + ProtectableItemListResponse output = new ProtectableItemListResponse(); + List protectableItems = new List(); + ProtectableItemListResponse response = this .GetSiteRecoveryClient() - .ProtectableItem.List(fabricName, protectionContainerName, "All", this.GetRequestHeaders()); + .ProtectableItem.List(fabricName, protectionContainerName, "All", null, null, this.GetRequestHeaders()); + protectableItems.AddRange(response.ProtectableItems); + while(response.NextLink != null) + { + response = this + .GetSiteRecoveryClient() + .ProtectableItem.ListNext(response.NextLink, this.GetRequestHeaders()); + protectableItems.AddRange(response.ProtectableItems); + } + + output.ProtectableItems = protectableItems; + return output; } /// From aa3ddf8f101852a3a6cf1bd15dd307bc2df7bdf7 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Tue, 15 Dec 2015 19:42:21 +0530 Subject: [PATCH 02/12] It contains: 1) Disable-DR fix for next-link 2) Fix for issue in filtering E2E network mapping with E2A network mappings 3) Typo fix for ResourceGroupName in New-AzureRmRecoveryServicesVault and New-AzureRmSiteRecoveryVault 4) Removing unnecessary aliases --- .../Common/PSRecoveryServicesVaultClient.cs | 2 +- .../Vault/NewAzureRMRecoveryServicesVault.cs | 4 ++-- .../Common/PSSiteRecoveryJobClient.cs | 2 +- .../Network/GetAzureRMSiteRecoveryNetworkMapping.cs | 5 +++++ .../Policy/GetAzureSiteRecoveryPolicy.cs | 1 - .../Policy/NewAzureSiteRecoveryPolicy.cs | 1 - .../Policy/RemoveAzureSiteRecoveryPolicy.cs | 1 - .../StartAzureSiteRecoveryPolicyAssociationJob.cs | 1 - .../StartAzureSiteRecoveryPolicyDissociationJob.cs | 1 - .../SetAzureSiteRecoveryProtectionEntity.cs | 10 +++++++--- .../Vault/NewAzureSiteRecoveryVault.cs | 4 ++-- 11 files changed, 18 insertions(+), 14 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultClient.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultClient.cs index 6918f4ebd332..c26cfee45a96 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultClient.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/PSRecoveryServicesVaultClient.cs @@ -29,7 +29,7 @@ public partial class PSRecoveryServicesClient /// vault list response object. public VaultListResponse GetVaultsInResouceGroup(string resouceGroupName) { - return this.GetRecoveryServicesClient.Vaults.Get(resouceGroupName, this.GetRequestHeaders()); + return this.GetRecoveryServicesClient.Vaults.List(resouceGroupName, this.GetRequestHeaders()); } /// diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/NewAzureRMRecoveryServicesVault.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/NewAzureRMRecoveryServicesVault.cs index 95a533a5568e..d81585f923df 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/NewAzureRMRecoveryServicesVault.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/NewAzureRMRecoveryServicesVault.cs @@ -34,11 +34,11 @@ public class NewAzureRmRecoveryServicesVault : RecoveryServicesCmdletBase public string Name { get; set; } /// - /// Gets or sets the resouce group name + /// Gets or sets the resource group name /// [Parameter(Mandatory = true)] [ValidateNotNullOrEmpty] - public string ResouceGroupName { get; set; } + public string ResourceGroupName { get; set; } /// /// Gets or sets the location of the vault diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryJobClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryJobClient.cs index 021ed3b809b9..cf34485336a6 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryJobClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryJobClient.cs @@ -38,7 +38,7 @@ public JobResponse GetAzureSiteRecoveryJobDetails(string jobName) /// Job list response public JobListResponse GetAzureSiteRecoveryJob() { - return this.GetSiteRecoveryClient().Jobs.List(this.GetRequestHeaders(false)); + return this.GetSiteRecoveryClient().Jobs.List(null, this.GetRequestHeaders(false)); } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs index c0930e5675c3..12a9b7d6c9eb 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Network/GetAzureRMSiteRecoveryNetworkMapping.cs @@ -102,6 +102,11 @@ private void FilterE2EMappings() { string primaryFabricName = Utilities.GetValueFromArmId(networkMapping.Id, ARMResourceTypeConstants.ReplicationFabrics); + + // Skip azure cases + if (!networkMapping.Properties.RecoveryNetworkId.ToLower().Contains(ARMResourceTypeConstants.ReplicationFabrics.ToLower())) + continue; + string recoveryFabricName = Utilities.GetValueFromArmId(networkMapping.Properties.RecoveryNetworkId, ARMResourceTypeConstants.ReplicationFabrics); diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs index c95febf2ef51..552d1f00971d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/GetAzureSiteRecoveryPolicy.cs @@ -25,7 +25,6 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// Retrieves Azure Site Recovery Server. /// [Cmdlet(VerbsCommon.Get, "AzureRmSiteRecoveryPolicy", DefaultParameterSetName = ASRParameterSets.Default)] - [Alias("Get-AzureRmSiteRecoveryProtectionProfile")] [OutputType(typeof(IEnumerable))] public class GetAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs index 978a957829ac..d7d032124a4d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/NewAzureSiteRecoveryPolicy.cs @@ -26,7 +26,6 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// Creates Azure Site Recovery Policy object in memory. /// [Cmdlet(VerbsCommon.New, "AzureRmSiteRecoveryPolicy", DefaultParameterSetName = ASRParameterSets.EnterpriseToAzure)] - [Alias("New-AzureRmSiteRecoveryProtectionProfile")] public class NewAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase { /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs index 50321c9ebb42..8dbb0a65313d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/RemoveAzureSiteRecoveryPolicy.cs @@ -25,7 +25,6 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// Creates Azure Site Recovery Policy object in memory. /// [Cmdlet(VerbsCommon.Remove, "AzureRmSiteRecoveryPolicy")] - [Alias("Remove-AzureRmSiteRecoveryProtectionProfile")] public class RemoveAzureSiteRecoveryPolicy : SiteRecoveryCmdletBase { #region Parameters diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs index fbe0ef5f314e..d67141cbb146 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyAssociationJob.cs @@ -25,7 +25,6 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// Adds Azure Site Recovery Policy settings to a Protection Container. /// [Cmdlet(VerbsLifecycle.Start, "AzureRmSiteRecoveryPolicyAssociationJob", DefaultParameterSetName = ASRParameterSets.EnterpriseToAzure)] - [Alias("Start-AzureRmSiteRecoveryProtectionProfileAssociationJob")] [OutputType(typeof(ASRJob))] public class StartAzureSiteRecoveryPolicyAssociationJob : SiteRecoveryCmdletBase { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs index 7760bc33c85a..772e937d3a94 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs @@ -24,7 +24,6 @@ namespace Microsoft.Azure.Commands.SiteRecovery /// Adds Azure Site Recovery Policy settings to a Protection Container. /// [Cmdlet(VerbsLifecycle.Start, "AzureRmSiteRecoveryPolicyDissociationJob", DefaultParameterSetName = ASRParameterSets.EnterpriseToAzure)] - [Alias("Start-AzureRmSiteRecoveryPolicyDissociationJob")] [OutputType(typeof(ASRJob))] public class StartAzureSiteRecoveryPolicyDissociationJob : SiteRecoveryCmdletBase { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs index 07d7785d6817..f94ef231d863 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs @@ -226,10 +226,14 @@ public override void ExecuteCmdlet() }; // fetch the latest PE object - ProtectableItemListResponse protectableItemListResponse = + //ProtectableItemListResponse protectableItemListResponse = + // RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), + // this.ProtectionEntity.ProtectionContainerId); + ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), - this.ProtectionEntity.ProtectionContainerId); - ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => t.Name.CompareTo(this.ProtectionEntity.Name) == 0); + this.ProtectionEntity.ProtectionContainerId, this.ProtectionEntity.Name); + //ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => t.Name.CompareTo(this.ProtectionEntity.Name) == 0); + ProtectableItem protectableItem = protectableItemResponse.ProtectableItem; this.response = RecoveryServicesClient.DisableProtection( diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs index 84ec678a16dc..b38a31b03c78 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs @@ -36,11 +36,11 @@ public class CreateAzureSiteRecoveryVault : SiteRecoveryCmdletBase public string Name { get; set; } /// - /// Gets or sets the resouce group name + /// Gets or sets the resource group name /// [Parameter(Mandatory = true)] [ValidateNotNullOrEmpty] - public string ResouceGroupName { get; set; } + public string ResourceGroupName { get; set; } /// /// Gets or sets the location of the vault From b2a5c9c1a5f210066fed9e9de80ab8fe6de5506e Mon Sep 17 00:00:00 2001 From: sriramvu Date: Wed, 16 Dec 2015 17:52:01 +0530 Subject: [PATCH 03/12] To leverage service filtering --- .../Common/PSSiteRecoveryJobClient.cs | 4 ++-- .../Job/GetAzureSiteRecoveryJob.cs | 17 +++++++++-------- .../Commands.SiteRecovery/Models/PSObjects.cs | 4 ++-- .../Vault/NewAzureSiteRecoveryVault.cs | 2 +- 4 files changed, 14 insertions(+), 13 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryJobClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryJobClient.cs index cf34485336a6..c9eb703c882e 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryJobClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryJobClient.cs @@ -36,9 +36,9 @@ public JobResponse GetAzureSiteRecoveryJobDetails(string jobName) /// Get Azure Site Recovery Job. /// /// Job list response - public JobListResponse GetAzureSiteRecoveryJob() + public JobListResponse GetAzureSiteRecoveryJob(JobQueryParameter jqp) { - return this.GetSiteRecoveryClient().Jobs.List(null, this.GetRequestHeaders(false)); + return this.GetSiteRecoveryClient().Jobs.List(jqp, this.GetRequestHeaders(false)); } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs index 66839c2099c5..0c90a22d648d 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs @@ -128,26 +128,27 @@ private void GetByParam() { JobQueryParameter jqp = new JobQueryParameter(); - IList completeJobsList = RecoveryServicesClient.GetAzureSiteRecoveryJob().Jobs; - - IEnumerable filteredJobsList = completeJobsList.ToArray().AsEnumerable(); if (this.StartTime.HasValue) { - filteredJobsList = filteredJobsList.Where(j => j.Properties.StartTime.Value.ToUniversalTime().ToBinary() >= this.StartTime.Value.ToUniversalTime().ToBinary()); + jqp.StartTime = this.StartTime.Value.ToBinary().ToString(); } if (this.EndTime.HasValue) { - filteredJobsList = filteredJobsList.Where(j => j.Properties.EndTime.Value.ToUniversalTime().ToBinary() <= this.EndTime.Value.ToUniversalTime().ToBinary()); + jqp.EndTime = this.EndTime.Value.ToBinary().ToString(); } if (this.State != null) { - filteredJobsList = filteredJobsList.Where(j => 0 == string.Compare(j.Properties.State.ToString(), - this.State.ToString(),StringComparison.OrdinalIgnoreCase)); + jqp.JobStatus = new List(); + jqp.JobStatus.Add(this.State); } - if(this.TargetObjectId != null) + IList completeJobsList = RecoveryServicesClient.GetAzureSiteRecoveryJob(jqp).Jobs; + + // Filtering TargetObjectId + IEnumerable filteredJobsList = completeJobsList.ToArray().AsEnumerable(); + if (this.TargetObjectId != null) { filteredJobsList = filteredJobsList.Where(j => 0 == string.Compare(j.Properties.TargetObjectId.ToString(), this.TargetObjectId.ToString(), StringComparison.OrdinalIgnoreCase)); diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index 0fcd7502bffc..891cf3b7e2bf 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -1047,12 +1047,12 @@ public ASRJob(Job job) /// /// Gets or sets Start timestamp. /// - public DateTimeOffset? StartTime { get; set; } + public DateTime? StartTime { get; set; } /// /// Gets or sets End timestamp. /// - public DateTimeOffset? EndTime { get; set; } + public DateTime? EndTime { get; set; } /// /// Gets or sets TargetObjectId. diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs index b38a31b03c78..924c652509ca 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Vault/NewAzureSiteRecoveryVault.cs @@ -68,7 +68,7 @@ public override void ExecuteCmdlet() vaultCreateArgs.Properties.Sku = new VaultSku(); vaultCreateArgs.Properties.Sku.Name = "standard"; - VaultCreateResponse response = RecoveryServicesClient.CreateVault(this.ResouceGroupName, this.Name, vaultCreateArgs); + VaultCreateResponse response = RecoveryServicesClient.CreateVault(this.ResourceGroupName, this.Name, vaultCreateArgs); this.WriteObject(new ASRVault(response)); } From 074c73f213299c8c8aa5f7cf106ecddda0b99b38 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Wed, 16 Dec 2015 20:11:20 +0530 Subject: [PATCH 04/12] Fix for exception error object serialization --- .../Common/RecoveryServicesCmdletBase.cs | 46 +++++----- .../Models/PSContracts.cs | 85 +++++++++++++++++-- .../Properties/Resources.Designer.cs | 9 +- .../Properties/Resources.resx | 7 +- .../Vault/NewAzureRMRecoveryServicesVault.cs | 2 +- .../Common/SiteRecoveryCmdletBase.cs | 49 +++++------ .../Models/PSContracts.cs | 85 +++++++++++++++++-- .../Properties/Resources.Designer.cs | 10 +-- .../Properties/Resources.resx | 10 +-- 9 files changed, 223 insertions(+), 80 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs index 68d7bba07642..9893f78b91a0 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs @@ -19,6 +19,7 @@ using Hyak.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Azure.Commands.ResourceManager.Common; +using Newtonsoft.Json; namespace Microsoft.Azure.Commands.RecoveryServices { @@ -68,36 +69,33 @@ public void HandleException(Exception ex) CloudException cloudException = ex as CloudException; if (cloudException != null) { - Error error = null; + ARMException error = null; try { - using (Stream stream = new MemoryStream()) + if (cloudException.Message != null) { - if (cloudException.Message != null) - { - byte[] data = System.Text.Encoding.UTF8.GetBytes(cloudException.Message); - stream.Write(data, 0, data.Length); - stream.Position = 0; - - var deserializer = new DataContractSerializer(typeof(ErrorInException)); - error = (Error)deserializer.ReadObject(stream); + string originalMessage = cloudException.Error.OriginalMessage; + error = JsonConvert.DeserializeObject(originalMessage); - throw new InvalidOperationException( - string.Format( - Properties.Resources.CloudExceptionDetails, - error.Message, - error.PossibleCauses, - error.RecommendedAction, - error.ClientRequestId)); - } - else + string exceptionMessage = "Operation Failed.\n"; + foreach (ARMExceptionDetails detail in error.Details) { - throw new Exception( - string.Format( - Properties.Resources.InvalidCloudExceptionErrorMessage, - clientRequestIdMsg + ex.Message), - ex); + exceptionMessage = exceptionMessage + string.Format( + Properties.Resources.CloudExceptionDetails, + detail.ErrorCode, + detail.Message + ) + "\n\n"; } + + throw new InvalidOperationException(exceptionMessage); + } + else + { + throw new Exception( + string.Format( + Properties.Resources.InvalidCloudExceptionErrorMessage, + clientRequestIdMsg + ex.Message), + ex); } } catch (XmlException) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs index 80b6f33a816d..20eee42199ee 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs @@ -19,6 +19,7 @@ using System.Text; using Microsoft.Azure.Commands.RecoveryServices; using Microsoft.Azure.Management.RecoveryServices.Models; +using Newtonsoft.Json; namespace Microsoft.Azure.Commands.RecoveryServices { @@ -86,15 +87,89 @@ public enum RpErrorCode } /// - /// Error contract returned when some exception occurs in ASR REST API. + /// ARM exception class. /// - [SuppressMessage( + [System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1402:FileMayOnlyContainASingleClass", - Justification = "Keeping all contracts together.")] - [DataContract] - public class ErrorInException : Error + Justification = "Keeping all related classes together.")] + public class ARMException { + /// + /// Gets HTTP status code for the error. + /// + [JsonProperty(PropertyName = "code")] + public string ErrorCode { get; private set; } + + /// + /// Gets exception message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets exception target. + /// + [JsonProperty(PropertyName = "target", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string Target { get; private set; } + + /// + /// Gets service based error details. + /// + [JsonProperty(PropertyName = "details")] + public List Details { get; private set; } + } + + /// + /// Service based exception details. + /// + public class ARMExceptionDetails + { + /// + /// Gets service error code. + /// + [JsonProperty(PropertyName = "code")] + public string ErrorCode { get; private set; } + + /// + /// Gets error message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets possible cause for error. + /// + [JsonProperty(PropertyName = "possibleCauses", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string PossibleCauses { get; private set; } + + /// + /// Gets recommended action for the error. + /// + [JsonProperty(PropertyName = "recommendedAction", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string RecommendedAction { get; private set; } + + /// + /// Gets the client request Id for the session. + /// + [JsonProperty(PropertyName = "clientRequestId", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string ClientRequestId { get; private set; } + + /// + /// Gets exception target. + /// + [JsonProperty(PropertyName = "target", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string Target { get; private set; } } /// diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs index d23c72543231..a3b65812fa9d 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34014 +// Runtime Version:4.0.30319.34209 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -70,11 +70,8 @@ internal static string AzureVMNetworkIsNotAssociatedWithTheSubscription { } /// - /// Looks up a localized string similar to Operation Failed. - ///Message: {0} - ///Possible Causes: {1} - ///Recommended Action: {2} - ///ClientRequestId: {3}. + /// Looks up a localized string similar to ErrorCode: {0} + ///Message: {1}. /// internal static string CloudExceptionDetails { get { diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx index 043e3803dba8..2986a16f42c5 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx @@ -118,11 +118,8 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Operation Failed. -Message: {0} -Possible Causes: {1} -Recommended Action: {2} -ClientRequestId: {3} + ErrorCode: {0} +Message: {1} Cloud Service name mentioned is either null or empty diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/NewAzureRMRecoveryServicesVault.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/NewAzureRMRecoveryServicesVault.cs index d81585f923df..8c4bbddd188d 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/NewAzureRMRecoveryServicesVault.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Vault/NewAzureRMRecoveryServicesVault.cs @@ -62,7 +62,7 @@ public override void ExecuteCmdlet() vaultCreateArgs.Sku = new VaultSku(); vaultCreateArgs.Sku.Name = "standard"; - VaultCreateResponse response = RecoveryServicesClient.CreateVault(this.ResouceGroupName, this.Name, vaultCreateArgs); + VaultCreateResponse response = RecoveryServicesClient.CreateVault(this.ResourceGroupName, this.Name, vaultCreateArgs); this.WriteObject(new ARSVault(response)); } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs index f874796e9d7a..18066755a9d1 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs @@ -25,6 +25,7 @@ using Microsoft.Azure.Management.SiteRecovery.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; +using Newtonsoft.Json; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -74,36 +75,36 @@ public void HandleException(Exception ex) CloudException cloudException = ex as CloudException; if (cloudException != null) { - Error error = null; + ARMException error = null; try { - using (Stream stream = new MemoryStream()) + if (cloudException.Message != null) { - if (cloudException.Message != null) - { - byte[] data = System.Text.Encoding.UTF8.GetBytes(cloudException.Message); - stream.Write(data, 0, data.Length); - stream.Position = 0; - - var deserializer = new DataContractSerializer(typeof(ErrorInException)); - error = (Error)deserializer.ReadObject(stream); + string originalMessage = cloudException.Error.OriginalMessage; + error = JsonConvert.DeserializeObject(originalMessage); - throw new InvalidOperationException( - string.Format( - Properties.Resources.CloudExceptionDetails, - error.Message, - error.PossibleCauses, - error.RecommendedAction, - error.ClientRequestId)); - } - else + string exceptionMessage = "Operation Failed.\n"; + foreach(ARMExceptionDetails detail in error.Details) { - throw new Exception( - string.Format( - Properties.Resources.InvalidCloudExceptionErrorMessage, - clientRequestIdMsg + ex.Message), - ex); + exceptionMessage = exceptionMessage + string.Format( + Properties.Resources.CloudExceptionDetails, + detail.ErrorCode, + detail.Message, + detail.PossibleCauses, + detail.RecommendedAction, + detail.ClientRequestId + ) + "\n\n"; } + + throw new InvalidOperationException(exceptionMessage); + } + else + { + throw new Exception( + string.Format( + Properties.Resources.InvalidCloudExceptionErrorMessage, + clientRequestIdMsg + ex.Message), + ex); } } catch (XmlException) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs index 2b401d475d40..eec575a9a248 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs @@ -19,6 +19,7 @@ using System.Text; using Microsoft.Azure.Commands.SiteRecovery; using Microsoft.Azure.Management.SiteRecovery.Models; +using Newtonsoft.Json; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -122,15 +123,89 @@ public enum RpErrorCode } /// - /// Error contract returned when some exception occurs in ASR REST API. + /// ARM exception class. /// - [SuppressMessage( + [System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.StyleCop.CSharp.MaintainabilityRules", "SA1402:FileMayOnlyContainASingleClass", - Justification = "Keeping all contracts together.")] - [DataContract] - public class ErrorInException : Error + Justification = "Keeping all related classes together.")] + public class ARMException { + /// + /// Gets HTTP status code for the error. + /// + [JsonProperty(PropertyName = "code")] + public string ErrorCode { get; private set; } + + /// + /// Gets exception message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets exception target. + /// + [JsonProperty(PropertyName = "target", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string Target { get; private set; } + + /// + /// Gets service based error details. + /// + [JsonProperty(PropertyName = "details")] + public List Details { get; private set; } + } + + /// + /// Service based exception details. + /// + public class ARMExceptionDetails + { + /// + /// Gets service error code. + /// + [JsonProperty(PropertyName = "code")] + public string ErrorCode { get; private set; } + + /// + /// Gets error message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets possible cause for error. + /// + [JsonProperty(PropertyName = "possibleCauses", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string PossibleCauses { get; private set; } + + /// + /// Gets recommended action for the error. + /// + [JsonProperty(PropertyName = "recommendedAction", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string RecommendedAction { get; private set; } + + /// + /// Gets the client request Id for the session. + /// + [JsonProperty(PropertyName = "clientRequestId", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string ClientRequestId { get; private set; } + + /// + /// Gets exception target. + /// + [JsonProperty(PropertyName = "target", + NullValueHandling = NullValueHandling.Ignore, + DefaultValueHandling = DefaultValueHandling.Ignore)] + public string Target { get; private set; } } /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs index 073a441ac45f..f5ff3c144a09 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs @@ -79,11 +79,11 @@ internal static string AzureVMNetworkIsNotAssociatedWithTheSubscription { } /// - /// Looks up a localized string similar to Operation Failed. - ///Message: {0} - ///Possible Causes: {1} - ///Recommended Action: {2} - ///ClientRequestId: {3}. + /// Looks up a localized string similar to ErrorCode: {0} + ///Message: {1} + ///Possible Causes: {2} + ///Recommended Action: {3} + ///ClientRequestId: {4}. /// internal static string CloudExceptionDetails { get { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx index 3de908233342..93d2d21e3f50 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx @@ -118,11 +118,11 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Operation Failed. -Message: {0} -Possible Causes: {1} -Recommended Action: {2} -ClientRequestId: {3} + ErrorCode: {0} +Message: {1} +Possible Causes: {2} +Recommended Action: {3} +ClientRequestId: {4} Cloud Service name mentioned is either null or empty From 26e1d69ad8ccc44d805d480cc00f172e768e680e Mon Sep 17 00:00:00 2001 From: sriramvu Date: Fri, 18 Dec 2015 11:01:14 +0530 Subject: [PATCH 05/12] StartTime and EndTime to be shown as localtime and to convert to UTC on querying the same --- .../Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs | 4 ++-- .../SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs index 0c90a22d648d..fbdc32239f62 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Job/GetAzureSiteRecoveryJob.cs @@ -130,12 +130,12 @@ private void GetByParam() if (this.StartTime.HasValue) { - jqp.StartTime = this.StartTime.Value.ToBinary().ToString(); + jqp.StartTime = this.StartTime.Value.ToUniversalTime().ToString("o"); } if (this.EndTime.HasValue) { - jqp.EndTime = this.EndTime.Value.ToBinary().ToString(); + jqp.EndTime = this.EndTime.Value.ToUniversalTime().ToString("o"); } if (this.State != null) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index 891cf3b7e2bf..8f77f7dabf45 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -966,8 +966,8 @@ public ASRJob(Job job) this.ClientRequestId = job.Properties.ActivityId; this.State = job.Properties.State; this.StateDescription = job.Properties.StateDescription; - this.EndTime = job.Properties.EndTime; - this.StartTime = job.Properties.StartTime; + this.EndTime = job.Properties.EndTime.Value.ToLocalTime(); + this.StartTime = job.Properties.StartTime.Value.ToLocalTime(); this.Name = job.Name; this.TargetObjectId = job.Properties.TargetObjectId; this.TargetObjectName = job.Properties.TargetObjectName; From 4aa8733f2273dac3e8cba4fc0bb6c6f234f72914 Mon Sep 17 00:00:00 2001 From: sriramvu Date: Fri, 18 Dec 2015 15:16:31 +0530 Subject: [PATCH 06/12] handling null checks for Start and End times of Jobs --- .../SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index 8f77f7dabf45..25246bc7a8e1 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -966,8 +966,8 @@ public ASRJob(Job job) this.ClientRequestId = job.Properties.ActivityId; this.State = job.Properties.State; this.StateDescription = job.Properties.StateDescription; - this.EndTime = job.Properties.EndTime.Value.ToLocalTime(); - this.StartTime = job.Properties.StartTime.Value.ToLocalTime(); + this.EndTime = job.Properties.EndTime.HasValue ? job.Properties.EndTime.Value.ToLocalTime() : (DateTime?)null; + this.StartTime = job.Properties.StartTime.HasValue ? job.Properties.StartTime.Value.ToLocalTime() : (DateTime?)null; this.Name = job.Name; this.TargetObjectId = job.Properties.TargetObjectId; this.TargetObjectName = job.Properties.TargetObjectName; From 18769b447fb55e44b6fc42dc7a37ce162589e674 Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Mon, 21 Dec 2015 13:07:28 +0530 Subject: [PATCH 07/12] Removing All filter while fetching protectable items and handling null fields of error object --- .../Common/RecoveryServicesCmdletBase.cs | 10 +++++----- .../Models/PSContracts.cs | 12 ++++++++++++ .../PSSiteRecoveryProtectableItemsClient.cs | 2 +- .../Common/SiteRecoveryCmdletBase.cs | 16 ++++++++-------- .../Commands.SiteRecovery/Models/PSContracts.cs | 12 ++++++++++++ 5 files changed, 38 insertions(+), 14 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs index 9893f78b91a0..a4899bf14020 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs @@ -69,21 +69,21 @@ public void HandleException(Exception ex) CloudException cloudException = ex as CloudException; if (cloudException != null) { - ARMException error = null; + ARMError error = null; try { if (cloudException.Message != null) { string originalMessage = cloudException.Error.OriginalMessage; - error = JsonConvert.DeserializeObject(originalMessage); + error = JsonConvert.DeserializeObject(originalMessage); string exceptionMessage = "Operation Failed.\n"; - foreach (ARMExceptionDetails detail in error.Details) + foreach (ARMExceptionDetails detail in error.Error.Details) { exceptionMessage = exceptionMessage + string.Format( Properties.Resources.CloudExceptionDetails, - detail.ErrorCode, - detail.Message + string.IsNullOrEmpty(detail.ErrorCode) ? "" : detail.ErrorCode, + string.IsNullOrEmpty(detail.Message)? "" : detail.Message ) + "\n\n"; } diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs index 20eee42199ee..59da9356d360 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs @@ -86,6 +86,18 @@ public enum RpErrorCode ResourceExtendedInfoNotFound } + /// + /// ARM specified Error + /// + public class ARMError + { + /// + /// Gets ARM formatted exception. + /// + [JsonProperty(PropertyName = "error")] + public ARMException Error { get; private set; } + } + /// /// ARM exception class. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectableItemsClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectableItemsClient.cs index 1a5e38adf977..0e760e46ec50 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectableItemsClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryProtectableItemsClient.cs @@ -36,7 +36,7 @@ public ProtectableItemListResponse GetAzureSiteRecoveryProtectableItem(string fa List protectableItems = new List(); ProtectableItemListResponse response = this .GetSiteRecoveryClient() - .ProtectableItem.List(fabricName, protectionContainerName, "All", null, null, this.GetRequestHeaders()); + .ProtectableItem.List(fabricName, protectionContainerName, null, null, null, this.GetRequestHeaders()); protectableItems.AddRange(response.ProtectableItems); while(response.NextLink != null) { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs index 18066755a9d1..cac40dce0cdf 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs @@ -75,24 +75,24 @@ public void HandleException(Exception ex) CloudException cloudException = ex as CloudException; if (cloudException != null) { - ARMException error = null; + ARMError error = null; try { if (cloudException.Message != null) { string originalMessage = cloudException.Error.OriginalMessage; - error = JsonConvert.DeserializeObject(originalMessage); + error = JsonConvert.DeserializeObject(originalMessage); string exceptionMessage = "Operation Failed.\n"; - foreach(ARMExceptionDetails detail in error.Details) + foreach (ARMExceptionDetails detail in error.Error.Details) { exceptionMessage = exceptionMessage + string.Format( Properties.Resources.CloudExceptionDetails, - detail.ErrorCode, - detail.Message, - detail.PossibleCauses, - detail.RecommendedAction, - detail.ClientRequestId + string.IsNullOrEmpty(detail.ErrorCode) ? "" : detail.ErrorCode, + string.IsNullOrEmpty(detail.Message)? "" : detail.Message, + string.IsNullOrEmpty(detail.PossibleCauses)? "" : detail.PossibleCauses, + string.IsNullOrEmpty(detail.RecommendedAction)? "" : detail.RecommendedAction, + string.IsNullOrEmpty(detail.ClientRequestId)? "": detail.ClientRequestId ) + "\n\n"; } diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs index eec575a9a248..fe2be967244b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs @@ -122,6 +122,18 @@ public enum RpErrorCode ResourceExtendedInfoNotFound } + /// + /// ARM specified Error + /// + public class ARMError + { + /// + /// Gets ARM formatted exception. + /// + [JsonProperty(PropertyName = "error")] + public ARMException Error { get; private set; } + } + /// /// ARM exception class. /// From f3a14510b78df2e4bc2db0dcb70663830993528c Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Tue, 22 Dec 2015 19:43:34 +0530 Subject: [PATCH 08/12] Adding support for purge and showing protectionstatedescription for VMs --- .../Commands.RecoveryServices.Test.csproj | 4 +-- .../packages.config | 1 + .../Commands.RecoveryServices.csproj | 6 ++-- .../Common/RecoveryServicesCmdletBase.cs | 24 +++++++++----- .../Models/PSContracts.cs | 6 ++++ .../Properties/Resources.Designer.cs | 4 +-- .../Properties/Resources.resx | 4 +-- .../Commands.RecoveryServices/packages.config | 1 + .../Commands.SiteRecovery.Test.csproj | 6 ++-- .../packages.config | 2 +- .../Commands.SiteRecovery.csproj | 6 ++-- ...eRecoveryRecoveryServicesProviderClient.cs | 11 +++++++ .../Common/SiteRecoveryCmdletBase.cs | 31 +++++++++++++------ .../Models/PSContracts.cs | 6 ++++ .../Commands.SiteRecovery/Models/PSObjects.cs | 2 +- ...tAzureSiteRecoveryPolicyDissociationJob.cs | 4 --- .../Properties/Resources.Designer.cs | 7 ++--- .../Properties/Resources.resx | 7 ++--- .../SetAzureSiteRecoveryProtectionEntity.cs | 4 --- .../Server/RemoveAzureSiteRecoveryServer.cs | 27 +++++++++++++--- .../Commands.SiteRecovery/packages.config | 2 +- 21 files changed, 107 insertions(+), 58 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 02dda1948f12..e8206c3c34df 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj @@ -47,8 +47,8 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - - ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.1-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll + + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.2-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll True diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config index f794cb17633e..83fea833a03e 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config @@ -5,6 +5,7 @@ + diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj index bd1deb96a3a6..d14fe29abcfb 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.1-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll - True + + False + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.2-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/Common/RecoveryServicesCmdletBase.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs index a4899bf14020..678f2808db30 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs @@ -77,14 +77,24 @@ public void HandleException(Exception ex) string originalMessage = cloudException.Error.OriginalMessage; error = JsonConvert.DeserializeObject(originalMessage); - string exceptionMessage = "Operation Failed.\n"; - foreach (ARMExceptionDetails detail in error.Error.Details) + string exceptionMessage = Properties.Resources.CloudExceptionDetails; + + if (error.Error.Details != null) + { + foreach (ARMExceptionDetails detail in error.Error.Details) + { + exceptionMessage = exceptionMessage + string.Concat( + string.IsNullOrEmpty(detail.ErrorCode) ? "" : "\nErrorCode: " + detail.ErrorCode, + string.IsNullOrEmpty(detail.Message) ? "" : "\nMessage: " + detail.Message, + "\n"); + } + } + else { - exceptionMessage = exceptionMessage + string.Format( - Properties.Resources.CloudExceptionDetails, - string.IsNullOrEmpty(detail.ErrorCode) ? "" : detail.ErrorCode, - string.IsNullOrEmpty(detail.Message)? "" : detail.Message - ) + "\n\n"; + exceptionMessage = exceptionMessage + string.Concat( + string.IsNullOrEmpty(error.Error.ErrorCode) ? "" : "\nErrorCode: " + error.Error.ErrorCode, + string.IsNullOrEmpty(error.Error.Message) ? "" : "\nMessage: " + error.Error.Message, + "\n"); } throw new InvalidOperationException(exceptionMessage); diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs index 59da9356d360..dacd4704d87e 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Models/PSContracts.cs @@ -175,6 +175,12 @@ public class ARMExceptionDetails DefaultValueHandling = DefaultValueHandling.Ignore)] public string ClientRequestId { get; private set; } + /// + /// Gets the activity Id for the session. + /// + [JsonProperty(PropertyName = "activityId")] + public string ActivityId { get; private set; } + /// /// Gets exception target. /// diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs index a3b65812fa9d..9e9061c1ad0b 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs @@ -70,8 +70,8 @@ internal static string AzureVMNetworkIsNotAssociatedWithTheSubscription { } /// - /// Looks up a localized string similar to ErrorCode: {0} - ///Message: {1}. + /// Looks up a localized string similar to Operation Failed. + ///. /// internal static string CloudExceptionDetails { get { diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx index 2986a16f42c5..feef11f65291 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx @@ -118,8 +118,8 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ErrorCode: {0} -Message: {1} + Operation Failed. + Cloud Service name mentioned is either null or empty diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config index e2796dd8f755..9873d0606672 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config @@ -5,6 +5,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 2e54d95d32d0..302130972a69 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.1-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll - True + + False + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll False diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/packages.config index 397f85bf75c6..63ece246e5e4 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 90301bb404c2..1dcc24fbc593 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.1-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll - True + + False + ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs index 7ca285515873..7e24b59e9ddb 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/PSSiteRecoveryRecoveryServicesProviderClient.cs @@ -55,5 +55,16 @@ public LongRunningOperationResponse RemoveAzureSiteRecoveryProvider(string fabri { return this.GetSiteRecoveryClient().RecoveryServicesProvider.BeginDeleting(fabricId, providerId, input, this.GetRequestHeaders()); } + + /// + /// Purge Azure Site Recovery Providers. + /// + /// Fabric ID + /// Provider ID + /// Provider response + public LongRunningOperationResponse PurgeAzureSiteRecoveryProvider(string fabricId, string providerId) + { + return this.GetSiteRecoveryClient().RecoveryServicesProvider.BeginPurging(fabricId, providerId, this.GetRequestHeaders()); + } } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs index cac40dce0cdf..7987dcc185d7 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs @@ -83,17 +83,28 @@ public void HandleException(Exception ex) string originalMessage = cloudException.Error.OriginalMessage; error = JsonConvert.DeserializeObject(originalMessage); - string exceptionMessage = "Operation Failed.\n"; - foreach (ARMExceptionDetails detail in error.Error.Details) + string exceptionMessage = Properties.Resources.CloudExceptionDetails; + + if (error.Error.Details != null) + { + foreach (ARMExceptionDetails detail in error.Error.Details) + { + exceptionMessage = exceptionMessage + string.Concat( + string.IsNullOrEmpty(detail.ErrorCode) ? "" : "\nErrorCode: " + detail.ErrorCode, + string.IsNullOrEmpty(detail.Message) ? "" : "\nMessage: " + detail.Message, + string.IsNullOrEmpty(detail.PossibleCauses) ? "" : "\nPossible Causes: " + detail.PossibleCauses, + string.IsNullOrEmpty(detail.RecommendedAction) ? "" : "\nRecommended Action: " + detail.RecommendedAction, + string.IsNullOrEmpty(detail.ClientRequestId) ? "" : "\nClientRequestId: " + detail.ClientRequestId, + string.IsNullOrEmpty(detail.ActivityId) ? "" : "\nActivityId: " + detail.ActivityId, + "\n"); + } + } + else { - exceptionMessage = exceptionMessage + string.Format( - Properties.Resources.CloudExceptionDetails, - string.IsNullOrEmpty(detail.ErrorCode) ? "" : detail.ErrorCode, - string.IsNullOrEmpty(detail.Message)? "" : detail.Message, - string.IsNullOrEmpty(detail.PossibleCauses)? "" : detail.PossibleCauses, - string.IsNullOrEmpty(detail.RecommendedAction)? "" : detail.RecommendedAction, - string.IsNullOrEmpty(detail.ClientRequestId)? "": detail.ClientRequestId - ) + "\n\n"; + exceptionMessage = exceptionMessage + string.Concat( + string.IsNullOrEmpty(error.Error.ErrorCode) ? "" : "\nErrorCode: " + error.Error.ErrorCode, + string.IsNullOrEmpty(error.Error.Message) ? "" : "\nMessage: " + error.Error.Message, + "\n"); } throw new InvalidOperationException(exceptionMessage); diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs index fe2be967244b..d6d193f663c8 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSContracts.cs @@ -211,6 +211,12 @@ public class ARMExceptionDetails DefaultValueHandling = DefaultValueHandling.Ignore)] public string ClientRequestId { get; private set; } + /// + /// Gets the activity Id for the session. + /// + [JsonProperty(PropertyName = "activityId")] + public string ActivityId { get; private set; } + /// /// Gets exception target. /// diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index 25246bc7a8e1..7d5332882416 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -754,7 +754,7 @@ public ASRProtectionEntity(ProtectableItem pi) public ASRProtectionEntity(ProtectableItem pi, ReplicationProtectedItem rpi, Policy policy = null) : this(pi) { this.Type = rpi.Type; - this.ProtectionStateDescription = rpi.Properties.ProtectionState; + this.ProtectionStateDescription = rpi.Properties.ProtectionStateDescription; if (rpi.Properties.AllowedOperations != null) { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs index 772e937d3a94..ed352b45fb8f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Policy/StartAzureSiteRecoveryPolicyDissociationJob.cs @@ -27,10 +27,6 @@ namespace Microsoft.Azure.Commands.SiteRecovery [OutputType(typeof(ASRJob))] public class StartAzureSiteRecoveryPolicyDissociationJob : SiteRecoveryCmdletBase { - /// - /// Job response. - /// - private LongRunningOperationResponse response = null; #region Parameters diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs index f5ff3c144a09..60b043deec3a 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.Designer.cs @@ -79,11 +79,8 @@ internal static string AzureVMNetworkIsNotAssociatedWithTheSubscription { } /// - /// Looks up a localized string similar to ErrorCode: {0} - ///Message: {1} - ///Possible Causes: {2} - ///Recommended Action: {3} - ///ClientRequestId: {4}. + /// Looks up a localized string similar to Operation Failed. + ///. /// internal static string CloudExceptionDetails { get { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx index 93d2d21e3f50..0c1045f42868 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Properties/Resources.resx @@ -118,11 +118,8 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ErrorCode: {0} -Message: {1} -Possible Causes: {2} -Recommended Action: {3} -ClientRequestId: {4} + Operation Failed. + Cloud Service name mentioned is either null or empty diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs index f94ef231d863..d285606d33d3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/ProtectionEntity/SetAzureSiteRecoveryProtectionEntity.cs @@ -226,13 +226,9 @@ public override void ExecuteCmdlet() }; // fetch the latest PE object - //ProtectableItemListResponse protectableItemListResponse = - // RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), - // this.ProtectionEntity.ProtectionContainerId); ProtectableItemResponse protectableItemResponse = RecoveryServicesClient.GetAzureSiteRecoveryProtectableItem(Utilities.GetValueFromArmId(this.ProtectionEntity.ID, ARMResourceTypeConstants.ReplicationFabrics), this.ProtectionEntity.ProtectionContainerId, this.ProtectionEntity.Name); - //ProtectableItem protectableItem = protectableItemListResponse.ProtectableItems.SingleOrDefault(t => t.Name.CompareTo(this.ProtectionEntity.Name) == 0); ProtectableItem protectableItem = protectableItemResponse.ProtectableItem; this.response = diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs index 87e1835b98f5..265de0341a04 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Server/RemoveAzureSiteRecoveryServer.cs @@ -36,6 +36,13 @@ public class RemoveAzureSiteRecoveryServer : SiteRecoveryCmdletBase [Parameter(Mandatory = true, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public ASRServer Server { get; set; } + + /// + /// Gets or sets switch parameter. On passing, command does not ask for confirmation. + /// + [Parameter] + public SwitchParameter Force { get; set; } + #endregion Parameters /// @@ -63,13 +70,23 @@ private void RemoveServer() throw new PSInvalidOperationException(Properties.Resources.InvalidServerType); } - RecoveryServicesProviderDeletionInput input = new RecoveryServicesProviderDeletionInput() + LongRunningOperationResponse response; + + if (!this.Force.IsPresent) { - Properties = new RecoveryServicesProviderDeletionInputProperties() - }; + RecoveryServicesProviderDeletionInput input = new RecoveryServicesProviderDeletionInput() + { + Properties = new RecoveryServicesProviderDeletionInputProperties() + }; - LongRunningOperationResponse response = - RecoveryServicesClient.RemoveAzureSiteRecoveryProvider(Utilities.GetValueFromArmId(this.Server.ID, ARMResourceTypeConstants.ReplicationFabrics), this.Server.Name, input); + response = + RecoveryServicesClient.RemoveAzureSiteRecoveryProvider(Utilities.GetValueFromArmId(this.Server.ID, ARMResourceTypeConstants.ReplicationFabrics), this.Server.Name, input); + } + else + { + response = + RecoveryServicesClient.PurgeAzureSiteRecoveryProvider(Utilities.GetValueFromArmId(this.Server.ID, ARMResourceTypeConstants.ReplicationFabrics), this.Server.Name); + } JobResponse jobResponse = RecoveryServicesClient diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config index e2570edba8dc..dbcc87d23c7a 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/packages.config @@ -4,7 +4,7 @@ - + From 0229838a4def441eecfc8ddcb6cc87d9be05602a Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Tue, 29 Dec 2015 16:43:49 +0530 Subject: [PATCH 09/12] Updating session records for siterecovery project --- .../Commands.RecoveryServices.Test.csproj | 3 +- .../ScenarioTests/RecoveryServicesTests.ps1 | 6 +- .../RecoveryServicesTestsBase.cs | 4 +- .../packages.config | 1 - .../Commands.RecoveryServices.csproj | 2 +- .../Commands.RecoveryServices/packages.config | 1 - .../Commands.SiteRecovery.Test.csproj | 2 +- .../ScenarioTests/SiteRecoveryTests.ps1 | 12 +- .../ScenarioTests/SiteRecoveryTestsBase.cs | 6 +- .../vaultSettings.VaultCredentials | 2 +- .../EnumerationTests.json | 1500 ++-- .../TestAssociateProfile.json | 674 +- .../TestCreateProfile.json | 193 +- .../TestDeleteProfile.json | 255 +- .../TestDissociateProfile.json | 770 +- .../VaultCRUDTests.json | 6322 ++++++++++++++++- .../Commands.SiteRecovery.csproj | 2 +- 17 files changed, 8117 insertions(+), 1638 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 c7b5c68a6d97..c76fc34e012f 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,8 @@ ..\..\..\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 diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 index a61b45552b31..e72cf151cafe 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 -ResouceGroupName testsitegroup -Location westus + $vaultCreationResponse = New-AzureRmRecoveryServicesVault -Name rsv1 -ResourceGroupName S91-1 -Location westus Assert-NotNull($vaultCreationResponse.Name) Assert-NotNull($vaultCreationResponse.ID) Assert-NotNull($vaultCreationResponse.Type) @@ -38,7 +38,7 @@ function Test-RecoveryServicesVaultCRUDTests } # Get the created vault - $vaultToBeRemoved = Get-AzureRmRecoveryServicesVault -ResourceGroupName testsitegroup -Name rsv1 + $vaultToBeRemoved = Get-AzureRmRecoveryServicesVault -ResourceGroupName S91-1 -Name rsv1 Assert-NotNull($vaultToBeRemoved.Name) Assert-NotNull($vaultToBeRemoved.ID) Assert-NotNull($vaultToBeRemoved.Type) @@ -48,6 +48,6 @@ function Test-RecoveryServicesVaultCRUDTests # Remove Vault Remove-AzureRmRecoveryServicesVault -Vault $vaultToBeRemoved - $vaults = Get-AzureRmRecoveryServicesVault -ResourceGroupName testsitegroup -Name rsv1 + $vaults = Get-AzureRmRecoveryServicesVault -ResourceGroupName S91-1 -Name rsv1 Assert-True { $vaults.Count -eq 0 } } \ No newline at end of file diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTestsBase.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTestsBase.cs index b13906cbd2a9..2a8198936a63 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTestsBase.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTestsBase.cs @@ -84,14 +84,14 @@ public static T GetServiceClient() where T : class if (testEnvironment.UsesCustomUri()) { client = new RecoveryServicesManagementClient( - "Microsoft.RecoveryServices", + "Microsoft.RecoveryServicesBVTD2", testEnvironment.Credentials as SubscriptionCloudCredentials, testEnvironment.BaseUri); } else { client = new RecoveryServicesManagementClient( - "Microsoft.RecoveryServices", + "Microsoft.RecoveryServicesBVTD2", testEnvironment.Credentials as SubscriptionCloudCredentials); } return GetServiceClient(factory, client); diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config index 552f4158fe4c..c27333b10017 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config @@ -4,7 +4,6 @@ - diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj index 4595f5ed012a..fdd01e270a49 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj @@ -51,7 +51,7 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - + False ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.2-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config index 8fb7c43f4d79..cedaa7970eda 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/packages.config @@ -4,7 +4,6 @@ - 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 6ba86c735922..c73962bb805b 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj @@ -47,7 +47,7 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - + False ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 index 5a1f21c8a253..2d7474cc1131 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTests.ps1 @@ -69,7 +69,7 @@ function Test-SiteRecoveryCreateProfile Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath # Create profile - $job = New-AzureRmSiteRecoveryPolicy -Name ppAzure -ReplicationProvider HyperVReplicaAzure -ReplicationFrequencyInSeconds 30 -RecoveryPoints 1 -ApplicationConsistentSnapshotFrequencyInHours 0 -RecoveryAzureStorageAccountId "/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.Storage/storageAccounts/sa5151" + $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 } @@ -107,7 +107,7 @@ function Test-SiteRecoveryAssociateProfile Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath # Get the primary cloud, recovery cloud, and protection profile - $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName cloud9 + $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName B2asite1 $pp = Get-AzureRmSiteRecoveryPolicy -Name ppAzure; # Associate the profile @@ -127,7 +127,7 @@ function Test-SiteRecoveryDissociateProfile Import-AzureRmSiteRecoveryVaultSettingsFile $vaultSettingsFilePath # Get the primary cloud, recovery cloud, and protection profile - $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName cloud9 + $pri = Get-AzureRmSiteRecoveryProtectionContainer -FriendlyName B2asite1 $pp = Get-AzureRmSiteRecoveryPolicy -Name ppAzure; # Dissociate the profile @@ -166,7 +166,7 @@ Site Recovery Vault CRUD Tests function Test-SiteRecoveryVaultCRUDTests { # Create vault - $vaultCreationResponse = New-AzureRmSiteRecoveryVault -Name rsv1 -ResouceGroupName testsitegroup -Location westus + $vaultCreationResponse = New-AzureRmSiteRecoveryVault -Name rsv1 -ResourceGroupName S91-1 -Location westus Assert-NotNull($vaultCreationResponse.Name) Assert-NotNull($vaultCreationResponse.ID) Assert-NotNull($vaultCreationResponse.Type) @@ -183,13 +183,13 @@ function Test-SiteRecoveryVaultCRUDTests } # Get the created vault - $vaultToBeRemoved = Get-AzureRmSiteRecoveryVault -ResourceGroupName testsitegroup -Name rsv1 + $vaultToBeRemoved = Get-AzureRmSiteRecoveryVault -ResourceGroupName S91-1 -Name rsv1 Assert-NotNull($vaultToBeRemoved.Name) Assert-NotNull($vaultToBeRemoved.ID) Assert-NotNull($vaultToBeRemoved.Type) # Remove Vault Remove-AzureRmSiteRecoveryVault -Vault $vaultToBeRemoved - $vaults = Get-AzureRmSiteRecoveryVault -ResourceGroupName testsitegroup -Name rsv1 + $vaults = Get-AzureRmSiteRecoveryVault -ResourceGroupName S91-1 -Name rsv1 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 7d95dab8b7ee..a35a199af046 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/SiteRecoveryTestsBase.cs @@ -130,7 +130,7 @@ public T GetServiceClient() where T : class if (testEnvironment.UsesCustomUri()) { client = new RecoveryServicesManagementClient( - "Microsoft.RecoveryServices", + "Microsoft.RecoveryServicesBVTD2", "vaults", testEnvironment.Credentials as SubscriptionCloudCredentials, testEnvironment.BaseUri); @@ -138,7 +138,7 @@ public T GetServiceClient() where T : class else { client = new RecoveryServicesManagementClient( - "Microsoft.RecoveryServices", + "Microsoft.RecoveryServicesBVTD2", "vaults", testEnvironment.Credentials as SubscriptionCloudCredentials); } @@ -153,7 +153,7 @@ public T GetServiceClient() where T : class client = new SiteRecoveryManagementClient( asrVaultCreds.ResourceName, asrVaultCreds.ResourceGroupName, - "Microsoft.RecoveryServices", + "Microsoft.RecoveryServicesBVTD2", "vaults", testEnvironment.Credentials as SubscriptionCloudCredentials, testEnvironment.BaseUri); diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/vaultSettings.VaultCredentials b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/vaultSettings.VaultCredentials index 2b4824842367..7a9c9e42657f 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/vaultSettings.VaultCredentials +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/ScenarioTests/vaultSettings.VaultCredentials @@ -1 +1 @@ -00a07ea0-ad8b-491c-9de8-77bf10881499HyperVRecoveryManagerVaulthelloaccesscontrol.windows.netwusppe1rrp1usershttp://windowscloudbackup/m3vaultsffMOSoSTai8YGmsbVdEVLQ==testsitegroupMicrosoft.RecoveryServices1.0 +3cf8bef3-d6e2-47fd-8ef9-a305d11c4255HyperVRecoveryManagerVaultnvault1accesscontrol.windows.netseabvtd2rrp1usershttp://windowscloudbackup/m3vaultsQwgOuGhyZEWg4ZWGm0jngA==siterecoveryppecsmrg6Microsoft.RecoveryServicesBVTD21.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 8487728eeb20..04925b14e74c 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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14992" ], "x-ms-request-id": [ - "e0895bdd-c846-4f40-83da-afffb53fb556" + "08b9424b-9409-4c6c-8c53-dbadb7b2d6df" ], "x-ms-correlation-request-id": [ - "e0895bdd-c846-4f40-83da-afffb53fb556" + "08b9424b-9409-4c6c-8c53-dbadb7b2d6df" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052527Z:e0895bdd-c846-4f40-83da-afffb53fb556" + "CENTRALUS:20151229T092827Z:08b9424b-9409-4c6c-8c53-dbadb7b2d6df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:27 GMT" + "Tue, 29 Dec 2015 09:28:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-request-id": [ - "4c4001ca-6ca3-49cf-aff1-c23b3000c86d" + "2af45a60-7b02-4cca-880c-159d3fc7e664" ], "x-ms-correlation-request-id": [ - "4c4001ca-6ca3-49cf-aff1-c23b3000c86d" + "2af45a60-7b02-4cca-880c-159d3fc7e664" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052528Z:4c4001ca-6ca3-49cf-aff1-c23b3000c86d" + "CENTRALUS:20151229T092829Z:2af45a60-7b02-4cca-880c-159d3fc7e664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:28 GMT" + "Tue, 29 Dec 2015 09:28:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14965" ], "x-ms-request-id": [ - "c3f1e390-78d9-4f38-97b6-355f79ef0963" + "01a10a94-4720-452f-a272-faf10100fc2f" ], "x-ms-correlation-request-id": [ - "c3f1e390-78d9-4f38-97b6-355f79ef0963" + "01a10a94-4720-452f-a272-faf10100fc2f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052531Z:c3f1e390-78d9-4f38-97b6-355f79ef0963" + "CENTRALUS:20151229T092843Z:01a10a94-4720-452f-a272-faf10100fc2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:31 GMT" + "Tue, 29 Dec 2015 09:28:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -163,13 +163,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,16 +181,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14963" ], "x-ms-request-id": [ - "cd6167b3-b5ed-4204-ba89-b133dafbf3d6" + "637b1a8f-63bf-4df2-b80d-f011a38cbd69" ], "x-ms-correlation-request-id": [ - "cd6167b3-b5ed-4204-ba89-b133dafbf3d6" + "637b1a8f-63bf-4df2-b80d-f011a38cbd69" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052535Z:cd6167b3-b5ed-4204-ba89-b133dafbf3d6" + "CENTRALUS:20151229T092846Z:637b1a8f-63bf-4df2-b80d-f011a38cbd69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,14 +199,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:34 GMT" + "Tue, 29 Dec 2015 09:28:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -214,13 +214,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,16 +232,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14961" ], "x-ms-request-id": [ - "683f9cb0-de97-49c4-9b71-24edbcf196ef" + "a8d14862-a4c9-44e8-baaa-773cecabd263" ], "x-ms-correlation-request-id": [ - "683f9cb0-de97-49c4-9b71-24edbcf196ef" + "a8d14862-a4c9-44e8-baaa-773cecabd263" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052536Z:683f9cb0-de97-49c4-9b71-24edbcf196ef" + "CENTRALUS:20151229T092848Z:a8d14862-a4c9-44e8-baaa-773cecabd263" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,14 +250,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:36 GMT" + "Tue, 29 Dec 2015 09:28:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -265,13 +265,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,16 +283,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14959" ], "x-ms-request-id": [ - "b4ae100e-26b9-49f3-96a4-2210480cd14d" + "6d475720-6c05-4f33-a18b-c5da55f693ef" ], "x-ms-correlation-request-id": [ - "b4ae100e-26b9-49f3-96a4-2210480cd14d" + "6d475720-6c05-4f33-a18b-c5da55f693ef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052538Z:b4ae100e-26b9-49f3-96a4-2210480cd14d" + "CENTRALUS:20151229T092849Z:6d475720-6c05-4f33-a18b-c5da55f693ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -301,14 +301,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:38 GMT" + "Tue, 29 Dec 2015 09:28:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,13 +316,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14957" ], "x-ms-request-id": [ - "e25c984b-2670-4bdf-a70b-712504373035" + "b48b3a07-dfb4-4ae0-80af-0acad00c9783" ], "x-ms-correlation-request-id": [ - "e25c984b-2670-4bdf-a70b-712504373035" + "b48b3a07-dfb4-4ae0-80af-0acad00c9783" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052539Z:e25c984b-2670-4bdf-a70b-712504373035" + "CENTRALUS:20151229T092851Z:b48b3a07-dfb4-4ae0-80af-0acad00c9783" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,14 +352,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:39 GMT" + "Tue, 29 Dec 2015 09:28:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -367,13 +367,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,16 +385,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14955" ], "x-ms-request-id": [ - "ad4d8a28-ecd9-4e3c-8639-cbc88e1646d1" + "246d6c44-51dc-4507-8025-15b690055ca2" ], "x-ms-correlation-request-id": [ - "ad4d8a28-ecd9-4e3c-8639-cbc88e1646d1" + "246d6c44-51dc-4507-8025-15b690055ca2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052541Z:ad4d8a28-ecd9-4e3c-8639-cbc88e1646d1" + "CENTRALUS:20151229T092853Z:246d6c44-51dc-4507-8025-15b690055ca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,31 +403,34 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:40 GMT" + "Tue, 29 Dec 2015 09:28:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "1289" + "5844" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -435,50 +438,59 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], "x-ms-request-id": [ - "0f471b21-3738-4e5f-acf9-e18319b84bbb" + "8e5d25e2-1729-4b0d-a740-f81f42a9657f" ], - "x-ms-correlation-request-id": [ - "0f471b21-3738-4e5f-acf9-e18319b84bbb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052542Z:0f471b21-3738-4e5f-acf9-e18319b84bbb" + "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": [ - "Wed, 18 Nov 2015 05:25:42 GMT" + "Tue, 29 Dec 2015 09:28:28 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "1289" + "5844" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -486,50 +498,59 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], "x-ms-request-id": [ - "4008c45d-5b53-4df2-a64a-b6c64d217af0" - ], - "x-ms-correlation-request-id": [ - "4008c45d-5b53-4df2-a64a-b6c64d217af0" + "572326be-083b-484b-8bd1-17b02724bbf8" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052543Z:4008c45d-5b53-4df2-a64a-b6c64d217af0" + "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": [ - "Wed, 18 Nov 2015 05:25:43 GMT" + "Tue, 29 Dec 2015 09:28:44 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "1289" + "5844" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -537,50 +558,59 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], "x-ms-request-id": [ - "f72ad85a-7921-4224-a92a-cbb04f877a43" - ], - "x-ms-correlation-request-id": [ - "f72ad85a-7921-4224-a92a-cbb04f877a43" + "f805cdc3-a2ec-45c9-b03f-6ac30c3bcec3" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052545Z:f72ad85a-7921-4224-a92a-cbb04f877a43" + "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": [ - "Wed, 18 Nov 2015 05:25:45 GMT" + "Tue, 29 Dec 2015 09:28:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "1289" + "5844" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -588,50 +618,59 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], "x-ms-request-id": [ - "c104fbd8-83fe-42e1-a2c9-8bc63947ccc8" - ], - "x-ms-correlation-request-id": [ - "c104fbd8-83fe-42e1-a2c9-8bc63947ccc8" + "ba8f6ef5-0078-431a-bcee-86e11d0bd06c" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052546Z:c104fbd8-83fe-42e1-a2c9-8bc63947ccc8" + "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": [ - "Wed, 18 Nov 2015 05:25:46 GMT" + "Tue, 29 Dec 2015 09:28:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "1289" + "5844" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -639,50 +678,59 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], "x-ms-request-id": [ - "67de7d74-0de1-4f94-b68d-dcb58c3fef64" - ], - "x-ms-correlation-request-id": [ - "67de7d74-0de1-4f94-b68d-dcb58c3fef64" + "95823632-37cf-4ebc-8eb2-58dc771d7d08" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052547Z:67de7d74-0de1-4f94-b68d-dcb58c3fef64" + "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": [ - "Wed, 18 Nov 2015 05:25:47 GMT" + "Tue, 29 Dec 2015 09:28:49 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "1289" + "5844" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -690,50 +738,59 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], "x-ms-request-id": [ - "f9303a88-aeeb-427c-a589-df665eea5640" - ], - "x-ms-correlation-request-id": [ - "f9303a88-aeeb-427c-a589-df665eea5640" + "71ea8582-36f4-40d2-9871-3805c231e190" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052549Z:f9303a88-aeeb-427c-a589-df665eea5640" + "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": [ - "Wed, 18 Nov 2015 05:25:48 GMT" + "Tue, 29 Dec 2015 09:28:51 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "1289" + "5844" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -741,50 +798,56 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], "x-ms-request-id": [ - "bf1f575a-4456-47c4-bd8e-160a9e98f345" - ], - "x-ms-correlation-request-id": [ - "bf1f575a-4456-47c4-bd8e-160a9e98f345" + "be61530b-cc66-4197-944a-ec747a6c87d0" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052550Z:bf1f575a-4456-47c4-bd8e-160a9e98f345" + "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": [ - "Wed, 18 Nov 2015 05:25:50 GMT" + "Tue, 29 Dec 2015 09:28:53 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "78284654-54db-410b-9936-0e65967aafcb-2015-11-18 05:25:27Z-P" + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "420" ], "Content-Type": [ "application/json" @@ -796,28 +859,28 @@ "no-cache" ], "x-ms-request-id": [ - "93e18270-9504-4f3c-8099-61a9725389e6" + "1584df3d-279b-484d-a442-91eee6681938" ], "x-ms-client-request-id": [ - "78284654-54db-410b-9936-0e65967aafcb-2015-11-18 05:25:27Z-P" + "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": [ - "14998" + "14989" ], "x-ms-correlation-request-id": [ - "93e18270-9504-4f3c-8099-61a9725389e6" + "1584df3d-279b-484d-a442-91eee6681938" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052528Z:93e18270-9504-4f3c-8099-61a9725389e6" + "CENTRALUS:20151229T092829Z:1584df3d-279b-484d-a442-91eee6681938" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:27 GMT" + "Tue, 29 Dec 2015 09:28:29 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -826,25 +889,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "51a6e3d3-48c1-4b95-89ec-f3663fd1479c-2015-11-18 05:25:30Z-P" + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -856,28 +919,28 @@ "no-cache" ], "x-ms-request-id": [ - "a62d417f-1eac-4990-9052-16a3fad3b443" + "e12e6136-401e-4081-a404-65652d12e9f5" ], "x-ms-client-request-id": [ - "51a6e3d3-48c1-4b95-89ec-f3663fd1479c-2015-11-18 05:25:30Z-P" + "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": [ - "14991" + "14988" ], "x-ms-correlation-request-id": [ - "a62d417f-1eac-4990-9052-16a3fad3b443" + "e12e6136-401e-4081-a404-65652d12e9f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052531Z:a62d417f-1eac-4990-9052-16a3fad3b443" + "CENTRALUS:20151229T092830Z:e12e6136-401e-4081-a404-65652d12e9f5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:31 GMT" + "Tue, 29 Dec 2015 09:28:29 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -886,25 +949,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "f1fc3058-1922-4e6d-8735-792c89771d82-2015-11-18 05:25:30Z-P" + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -916,28 +979,28 @@ "no-cache" ], "x-ms-request-id": [ - "9a5036b9-059f-4eef-b3b7-c9694a728d20" + "503ab6d4-f54e-4d24-8104-4af6e7410b18" ], "x-ms-client-request-id": [ - "f1fc3058-1922-4e6d-8735-792c89771d82-2015-11-18 05:25:30Z-P" + "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": [ - "14989" + "14987" ], "x-ms-correlation-request-id": [ - "9a5036b9-059f-4eef-b3b7-c9694a728d20" + "503ab6d4-f54e-4d24-8104-4af6e7410b18" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052531Z:9a5036b9-059f-4eef-b3b7-c9694a728d20" + "CENTRALUS:20151229T092830Z:503ab6d4-f54e-4d24-8104-4af6e7410b18" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:31 GMT" + "Tue, 29 Dec 2015 09:28:30 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -946,25 +1009,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "773ff926-3035-492e-ba58-e5e2fd0fee7c-2015-11-18 05:25:34Z-P" + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -976,28 +1039,28 @@ "no-cache" ], "x-ms-request-id": [ - "01ccd95e-7b87-4f22-8d0f-e9852e9312b9" + "eb7c0e82-f031-4399-8ac8-828a8d2e3098" ], "x-ms-client-request-id": [ - "773ff926-3035-492e-ba58-e5e2fd0fee7c-2015-11-18 05:25:34Z-P" + "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": [ - "14987" + "14986" ], "x-ms-correlation-request-id": [ - "01ccd95e-7b87-4f22-8d0f-e9852e9312b9" + "eb7c0e82-f031-4399-8ac8-828a8d2e3098" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052535Z:01ccd95e-7b87-4f22-8d0f-e9852e9312b9" + "CENTRALUS:20151229T092831Z:eb7c0e82-f031-4399-8ac8-828a8d2e3098" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:34 GMT" + "Tue, 29 Dec 2015 09:28:30 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1006,25 +1069,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Account10_Resource_Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0FjY291bnQxMF9SZXNvdXJjZV9Hcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "613fd93f-b62b-46a9-9357-1c1b62771f68-2015-11-18 05:25:36Z-P" + "943bdfbf-3812-45e3-93f9-b4f0e96e10f5-2015-12-29 09:28:31Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1036,10 +1099,10 @@ "no-cache" ], "x-ms-request-id": [ - "93121742-14ad-4484-a64a-ed5a016979ba" + "fdc5c309-d80d-4fdd-93b3-fa64a192bf1c" ], "x-ms-client-request-id": [ - "613fd93f-b62b-46a9-9357-1c1b62771f68-2015-11-18 05:25:36Z-P" + "943bdfbf-3812-45e3-93f9-b4f0e96e10f5-2015-12-29 09:28:31Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1048,16 +1111,16 @@ "14985" ], "x-ms-correlation-request-id": [ - "93121742-14ad-4484-a64a-ed5a016979ba" + "fdc5c309-d80d-4fdd-93b3-fa64a192bf1c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052537Z:93121742-14ad-4484-a64a-ed5a016979ba" + "CENTRALUS:20151229T092832Z:fdc5c309-d80d-4fdd-93b3-fa64a192bf1c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:36 GMT" + "Tue, 29 Dec 2015 09:28:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1066,25 +1129,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/adf/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL2FkZi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "174bcbed-4f78-4656-8952-00ebf1146569-2015-11-18 05:25:37Z-P" + "635539e2-a958-43a9-8e56-8fa3fd10595c-2015-12-29 09:28:32Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1096,28 +1159,28 @@ "no-cache" ], "x-ms-request-id": [ - "7d7100f6-a577-463e-b1b0-df2ceccbc686" + "c4a19d84-7586-484b-899c-9344dbd81774" ], "x-ms-client-request-id": [ - "174bcbed-4f78-4656-8952-00ebf1146569-2015-11-18 05:25:37Z-P" + "635539e2-a958-43a9-8e56-8fa3fd10595c-2015-12-29 09:28:32Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14984" ], "x-ms-correlation-request-id": [ - "7d7100f6-a577-463e-b1b0-df2ceccbc686" + "c4a19d84-7586-484b-899c-9344dbd81774" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052538Z:7d7100f6-a577-463e-b1b0-df2ceccbc686" + "CENTRALUS:20151229T092832Z:c4a19d84-7586-484b-899c-9344dbd81774" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:38 GMT" + "Tue, 29 Dec 2015 09:28:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1126,25 +1189,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/amitbhat11/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL2FtaXRiaGF0MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b057f45-6b53-476c-8c14-ca552e175b00-2015-11-18 05:25:39Z-P" + "693513a0-265f-4e48-b0b8-6e626ecbbc2e-2015-12-29 09:28:32Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1156,28 +1219,28 @@ "no-cache" ], "x-ms-request-id": [ - "38557453-b307-4f45-a4ff-fe2199627637" + "0b0d2648-7a76-4f32-8e92-ab6226c4408c" ], "x-ms-client-request-id": [ - "5b057f45-6b53-476c-8c14-ca552e175b00-2015-11-18 05:25:39Z-P" + "693513a0-265f-4e48-b0b8-6e626ecbbc2e-2015-12-29 09:28:32Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14983" ], "x-ms-correlation-request-id": [ - "38557453-b307-4f45-a4ff-fe2199627637" + "0b0d2648-7a76-4f32-8e92-ab6226c4408c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052540Z:38557453-b307-4f45-a4ff-fe2199627637" + "CENTRALUS:20151229T092833Z:0b0d2648-7a76-4f32-8e92-ab6226c4408c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:39 GMT" + "Tue, 29 Dec 2015 09:28:33 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1186,25 +1249,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/ARMTestRG1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0FSTVRlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8db9bf1f-c1d6-41d0-bc3b-f041ec94d8af-2015-11-18 05:25:40Z-P" + "a8e6de19-de6a-4652-aa12-e60e6d9a2231-2015-12-29 09:28:33Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "821" + "4628" ], "Content-Type": [ "application/json" @@ -1216,28 +1279,28 @@ "no-cache" ], "x-ms-request-id": [ - "fe1ad0bc-d9a4-4f15-aec9-5d4444e18c4c" + "6226c0ba-2338-49b9-b5e4-137105573cfc" ], "x-ms-client-request-id": [ - "8db9bf1f-c1d6-41d0-bc3b-f041ec94d8af-2015-11-18 05:25:40Z-P" + "a8e6de19-de6a-4652-aa12-e60e6d9a2231-2015-12-29 09:28:33Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14982" ], "x-ms-correlation-request-id": [ - "fe1ad0bc-d9a4-4f15-aec9-5d4444e18c4c" + "6226c0ba-2338-49b9-b5e4-137105573cfc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052541Z:fe1ad0bc-d9a4-4f15-aec9-5d4444e18c4c" + "CENTRALUS:20151229T092833Z:6226c0ba-2338-49b9-b5e4-137105573cfc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:40 GMT" + "Tue, 29 Dec 2015 09:28:33 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1246,25 +1309,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/CS-West-US-RecoveryServices/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0NTLVdlc3QtVVMtUmVjb3ZlcnlTZXJ2aWNlcy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "443f4daf-1627-4b8d-8381-86730c230b0e-2015-11-18 05:25:42Z-P" + "987c2e32-c0ec-4f00-9d38-1a958783ab61-2015-12-29 09:28:33Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1276,28 +1339,28 @@ "no-cache" ], "x-ms-request-id": [ - "67599d88-ea61-4112-a4d4-ce259d919eaf" + "1cdc8854-1ebd-4388-afce-c4586f098b92" ], "x-ms-client-request-id": [ - "443f4daf-1627-4b8d-8381-86730c230b0e-2015-11-18 05:25:42Z-P" + "987c2e32-c0ec-4f00-9d38-1a958783ab61-2015-12-29 09:28:33Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14981" ], "x-ms-correlation-request-id": [ - "67599d88-ea61-4112-a4d4-ce259d919eaf" + "1cdc8854-1ebd-4388-afce-c4586f098b92" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052543Z:67599d88-ea61-4112-a4d4-ce259d919eaf" + "CENTRALUS:20151229T092834Z:1cdc8854-1ebd-4388-afce-c4586f098b92" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:42 GMT" + "Tue, 29 Dec 2015 09:28:34 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1306,25 +1369,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Networking/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTmV0d29ya2luZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c10e91ea-b2ef-4ffd-897a-019c03f5238f-2015-11-18 05:25:43Z-P" + "3e2b2de9-aa95-463b-ad61-4b549f621eca-2015-12-29 09:28:34Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1336,28 +1399,28 @@ "no-cache" ], "x-ms-request-id": [ - "8748c960-a62d-4a21-8f12-128cac22f88a" + "edeb2964-df2d-40cf-95a8-dbf19ae4e533" ], "x-ms-client-request-id": [ - "c10e91ea-b2ef-4ffd-897a-019c03f5238f-2015-11-18 05:25:43Z-P" + "3e2b2de9-aa95-463b-ad61-4b549f621eca-2015-12-29 09:28:34Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14980" ], "x-ms-correlation-request-id": [ - "8748c960-a62d-4a21-8f12-128cac22f88a" + "edeb2964-df2d-40cf-95a8-dbf19ae4e533" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052544Z:8748c960-a62d-4a21-8f12-128cac22f88a" + "CENTRALUS:20151229T092835Z:edeb2964-df2d-40cf-95a8-dbf19ae4e533" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:44 GMT" + "Tue, 29 Dec 2015 09:28:34 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1366,25 +1429,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Default-Storage-WestUS/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df7e6a40-7eea-43b2-a9d0-1c54030bd8f3-2015-11-18 05:25:44Z-P" + "bcd9f74c-12c6-4e96-bbd9-506286a8270a-2015-12-29 09:28:35Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1396,28 +1459,28 @@ "no-cache" ], "x-ms-request-id": [ - "112e2aba-56d4-480d-9d9f-cdd2ee37fbc9" + "eb4b8687-8f38-4d28-8bd4-c61c7aff073c" ], "x-ms-client-request-id": [ - "df7e6a40-7eea-43b2-a9d0-1c54030bd8f3-2015-11-18 05:25:44Z-P" + "bcd9f74c-12c6-4e96-bbd9-506286a8270a-2015-12-29 09:28:35Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14979" ], "x-ms-correlation-request-id": [ - "112e2aba-56d4-480d-9d9f-cdd2ee37fbc9" + "eb4b8687-8f38-4d28-8bd4-c61c7aff073c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052545Z:112e2aba-56d4-480d-9d9f-cdd2ee37fbc9" + "CENTRALUS:20151229T092836Z:eb4b8687-8f38-4d28-8bd4-c61c7aff073c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:45 GMT" + "Tue, 29 Dec 2015 09:28:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1426,25 +1489,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0dyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2de344b-73b6-401f-956b-59dad67073a9-2015-11-18 05:25:46Z-P" + "22cf2d41-c8b7-4c77-9c03-a3e98d793cd0-2015-12-29 09:28:35Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1456,28 +1519,28 @@ "no-cache" ], "x-ms-request-id": [ - "62465b13-5a9d-43cc-9dd5-93a6ec06d78c" + "bd1bfc53-8c0c-49b3-ba5f-ceaf7b5d553e" ], "x-ms-client-request-id": [ - "d2de344b-73b6-401f-956b-59dad67073a9-2015-11-18 05:25:46Z-P" + "22cf2d41-c8b7-4c77-9c03-a3e98d793cd0-2015-12-29 09:28:35Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14978" ], "x-ms-correlation-request-id": [ - "62465b13-5a9d-43cc-9dd5-93a6ec06d78c" + "bd1bfc53-8c0c-49b3-ba5f-ceaf7b5d553e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052547Z:62465b13-5a9d-43cc-9dd5-93a6ec06d78c" + "CENTRALUS:20151229T092836Z:bd1bfc53-8c0c-49b3-ba5f-ceaf7b5d553e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:46 GMT" + "Tue, 29 Dec 2015 09:28:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1486,25 +1549,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-1/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0dyb3VwLTEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "166a55c8-ceb0-4839-89cd-fad796b10193-2015-11-18 05:25:47Z-P" + "da82f60f-d27e-4265-8c55-6f74709653ed-2015-12-29 09:28:36Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1516,28 +1579,28 @@ "no-cache" ], "x-ms-request-id": [ - "93229f16-5ea9-4d3b-a19d-3173be82d8fa" + "f44d8d21-1ab4-4173-b84c-6d777b866cc1" ], "x-ms-client-request-id": [ - "166a55c8-ceb0-4839-89cd-fad796b10193-2015-11-18 05:25:47Z-P" + "da82f60f-d27e-4265-8c55-6f74709653ed-2015-12-29 09:28:36Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14977" ], "x-ms-correlation-request-id": [ - "93229f16-5ea9-4d3b-a19d-3173be82d8fa" + "f44d8d21-1ab4-4173-b84c-6d777b866cc1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052548Z:93229f16-5ea9-4d3b-a19d-3173be82d8fa" + "CENTRALUS:20151229T092837Z:f44d8d21-1ab4-4173-b84c-6d777b866cc1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:47 GMT" + "Tue, 29 Dec 2015 09:28:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1546,25 +1609,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-2/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0dyb3VwLTIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0cc7cad3-790c-4507-b66c-256846b0a621-2015-11-18 05:25:48Z-P" + "d03b84bf-0d51-4adf-957b-29907ffd74b2-2015-12-29 09:28:37Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1576,28 +1639,28 @@ "no-cache" ], "x-ms-request-id": [ - "6b455e7e-618b-4c75-bbe0-1d33268636ef" + "0b8f43df-1ccc-41fa-a948-3eead1ebd0e0" ], "x-ms-client-request-id": [ - "0cc7cad3-790c-4507-b66c-256846b0a621-2015-11-18 05:25:48Z-P" + "d03b84bf-0d51-4adf-957b-29907ffd74b2-2015-12-29 09:28:37Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14976" ], "x-ms-correlation-request-id": [ - "6b455e7e-618b-4c75-bbe0-1d33268636ef" + "0b8f43df-1ccc-41fa-a948-3eead1ebd0e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052549Z:6b455e7e-618b-4c75-bbe0-1d33268636ef" + "CENTRALUS:20151229T092837Z:0b8f43df-1ccc-41fa-a948-3eead1ebd0e0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:49 GMT" + "Tue, 29 Dec 2015 09:28:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1606,25 +1669,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/Group-3/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL0dyb3VwLTMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c07d937-c4bf-4803-a228-b6e1d6676adc-2015-11-18 05:25:50Z-P" + "5cfc0679-9464-494c-b868-8805cc42a779-2015-12-29 09:28:37Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -1636,28 +1699,28 @@ "no-cache" ], "x-ms-request-id": [ - "afb82c11-946e-4495-a82b-c08941e49069" + "0d800102-6897-4b86-963a-606655e57824" ], "x-ms-client-request-id": [ - "3c07d937-c4bf-4803-a228-b6e1d6676adc-2015-11-18 05:25:50Z-P" + "5cfc0679-9464-494c-b868-8805cc42a779-2015-12-29 09:28:37Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14975" ], "x-ms-correlation-request-id": [ - "afb82c11-946e-4495-a82b-c08941e49069" + "0d800102-6897-4b86-963a-606655e57824" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052551Z:afb82c11-946e-4495-a82b-c08941e49069" + "CENTRALUS:20151229T092838Z:0d800102-6897-4b86-963a-606655e57824" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:50 GMT" + "Tue, 29 Dec 2015 09:28:38 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1666,19 +1729,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/CS-west-us-RecoveryServices/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL0NTLXdlc3QtdXMtUmVjb3ZlcnlTZXJ2aWNlcy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/RecoveryServices-2J572XHL3IU56BSKA7XP7EW4JPZNLEKTTZKB7QJV5WR7XAV3ZN5Q-West-US/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtMko1NzJYSEwzSVU1NkJTS0E3WFA3RVc0SlBaTkxFS1RUWktCN1FKVjVXUjdYQVYzWk41US1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87d5a03b-a14a-42a7-bc6f-6f2456954ff4-2015-11-18 05:25:28Z-P" + "e6b1bbcd-a77c-4a5c-9e0a-d5830591dfa1-2015-12-29 09:28:38Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1687,7 +1750,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -1695,53 +1758,59 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], "x-ms-request-id": [ - "6c48403c-9a52-439d-851a-cee4e77be2ba" - ], - "x-ms-correlation-request-id": [ - "6c48403c-9a52-439d-851a-cee4e77be2ba" + "862c93d8-c573-4b30-baa3-b407d9dc7b5a" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052529Z:6c48403c-9a52-439d-851a-cee4e77be2ba" + "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": [ - "Wed, 18 Nov 2015 05:25:28 GMT" + "Tue, 29 Dec 2015 09:28:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/Default-Storage-WestUS/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "a06b6102-823a-405c-b7cc-fc30dd361503-2015-11-18 05:25:28Z-P" + "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/5.0.0.0" + "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\": \"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": [ - "12" + "426" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -1749,53 +1818,59 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], "x-ms-request-id": [ - "c9df823b-b919-4678-abee-9ddd62ebc6ab" - ], - "x-ms-correlation-request-id": [ - "c9df823b-b919-4678-abee-9ddd62ebc6ab" + "ddaf6245-1ac6-4e6f-aea4-4c3cab308ae8" ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052529Z:c9df823b-b919-4678-abee-9ddd62ebc6ab" + "x-ms-client-request-id": [ + "ca33a784-7f6e-4d43-a086-bd75de496e8c-2015-12-29 09:28:38Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "ddaf6245-1ac6-4e6f-aea4-4c3cab308ae8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T092839Z:ddaf6245-1ac6-4e6f-aea4-4c3cab308ae8" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:28 GMT" + "Tue, 29 Dec 2015 09:28:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtTjJRUlJQVEU0WUpHSUpMQ1k1VTI1UlFWN1A0SzI0RU5VRzZMWVpGNUY1MzZWRlpJTTVQQS1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siteRecoveryPPECSMRG6/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVSZWNvdmVyeVBQRUNTTVJHNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7c497bf-226c-4dd8-8e6f-62f6aab0fd0e-2015-11-18 05:25:29Z-P" + "5ab4cd6c-7fac-4bfe-87de-5beec79f7c87-2015-12-29 09:28:39Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "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\": \"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": [ - "12" + "5844" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -1803,98 +1878,50 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], "x-ms-request-id": [ - "00d78563-9c56-4a00-824c-ae5499b77660" + "6d84f76d-c383-41d2-810b-243247ea9acb" ], - "x-ms-correlation-request-id": [ - "00d78563-9c56-4a00-824c-ae5499b77660" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052529Z:00d78563-9c56-4a00-824c-ae5499b77660" + "x-ms-client-request-id": [ + "5ab4cd6c-7fac-4bfe-87de-5beec79f7c87-2015-12-29 09:28:39Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 Nov 2015 05:25:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rg1/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b2b724c4-93f9-42aa-93a1-9a89dba2cddc-2015-11-18 05:25:29Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-request-id": [ - "db45f125-8ad4-41bf-9e56-9600216ce990" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" ], "x-ms-correlation-request-id": [ - "db45f125-8ad4-41bf-9e56-9600216ce990" + "6d84f76d-c383-41d2-810b-243247ea9acb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052530Z:db45f125-8ad4-41bf-9e56-9600216ce990" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20151229T092840Z:6d84f76d-c383-41d2-810b-243247ea9acb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:29 GMT" + "Tue, 29 Dec 2015 09:28:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3JnaW5icnMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/testRG/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3Rlc3RSRy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e73e80e9-91f8-4ff0-9155-37df60fc18dc-2015-11-18 05:25:29Z-P" + "78d40ea5-416e-4c2b-8363-868bd334fe98-2015-12-29 09:28:40Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1903,7 +1930,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -1911,184 +1938,56 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], "x-ms-request-id": [ - "9679adf6-1662-4680-8171-82e215a6bc5e" - ], - "x-ms-correlation-request-id": [ - "9679adf6-1662-4680-8171-82e215a6bc5e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052530Z:9679adf6-1662-4680-8171-82e215a6bc5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "482d379e-3a29-4169-90f2-02603a1a8bd6" ], - "Date": [ - "Wed, 18 Nov 2015 05:25:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "x-ms-client-request-id": [ - "3c1343bc-86c7-4c6e-8a3e-9a4357d0fd86-2015-11-18 05:25:31Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"1E2FACEB11F6AFAEE55459CED4F1442E0E56D9BA\",\r\n \"kekCertExpiryDate\": \"2018-11-12T19:37:42Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"57f95c35-6c83-42ce-bb21-2c4f10f92d8e\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "783" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3c1343bc-86c7-4c6e-8a3e-9a4357d0fd86-2015-11-18 05:25:31Z-P 11/18/2015 5:25:35 AM" + "78d40ea5-416e-4c2b-8363-868bd334fe98-2015-12-29 09:28:40Z-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": [ - "3c1343bc-86c7-4c6e-8a3e-9a4357d0fd86-2015-11-18 05:25:31Z-P" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14971" ], "x-ms-correlation-request-id": [ - "963c97d4-a09e-4e3a-9201-e1cc050205cd" + "482d379e-3a29-4169-90f2-02603a1a8bd6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052534Z:963c97d4-a09e-4e3a-9201-e1cc050205cd" - ], - "Date": [ - "Wed, 18 Nov 2015 05:25:34 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a13f001-0748-4abb-8d1a-ac384e042066-2015-11-18 05:25:36Z-P" - ], - "x-ms-version": [ - "2015-01-01" - ], - "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"1E2FACEB11F6AFAEE55459CED4F1442E0E56D9BA\",\r\n \"kekCertExpiryDate\": \"2018-11-12T19:37:42Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"57f95c35-6c83-42ce-bb21-2c4f10f92d8e\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "783" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2a13f001-0748-4abb-8d1a-ac384e042066-2015-11-18 05:25:36Z-P 11/18/2015 5:25:38 AM" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20151229T092840Z:482d379e-3a29-4169-90f2-02603a1a8bd6" ], "Cache-Control": [ "no-cache" ], + "Date": [ + "Tue, 29 Dec 2015 09:28:40 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": [ - "2a13f001-0748-4abb-8d1a-ac384e042066-2015-11-18 05:25:36Z-P" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "5d754a47-61ba-4a84-bc41-588b78556fae" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052537Z:5d754a47-61ba-4a84-bc41-588b78556fae" - ], - "Date": [ - "Wed, 18 Nov 2015 05:25:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationRecoveryServicesProviders?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblJlY292ZXJ5U2VydmljZXNQcm92aWRlcnM/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account101-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQxMDEtR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa09e54e-7f1c-4689-a972-5d1181480167-2015-11-18 05:25:35Z-P" + "4f1af156-eb05-4907-8404-9b5c10ca34b4-2015-12-29 09:28:40Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationRecoveryServicesProviders/57f95c35-6c83-42ce-bb21-2c4f10f92d8e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders\",\r\n \"name\": \"57f95c35-6c83-42ce-bb21-2c4f10f92d8e\",\r\n \"properties\": {\r\n \"fabricType\": \"VMM\",\r\n \"friendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"providerVersion\": \"5.1.1208.0\",\r\n \"serverVersion\": \"3.2.8071.0\",\r\n \"providerVersionState\": \"Supported\",\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"lastHeartBeat\": \"2015-11-12T22:36:08.2324673Z\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"protectedItemCount\": 0,\r\n \"allowedScenarios\": [\r\n \"Refresh\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "854" + "12" ], "Content-Type": [ "application/json" @@ -2100,62 +1999,55 @@ "no-cache" ], "x-ms-request-id": [ - "aa09e54e-7f1c-4689-a972-5d1181480167-2015-11-18 05:25:35Z-P 11/18/2015 5:25:36 AM" + "b1e19372-aaa5-490c-a536-7815bdf93eb4" + ], + "x-ms-client-request-id": [ + "4f1af156-eb05-4907-8404-9b5c10ca34b4-2015-12-29 09:28:40Z-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": [ - "aa09e54e-7f1c-4689-a972-5d1181480167-2015-11-18 05:25:35Z-P" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14970" ], "x-ms-correlation-request-id": [ - "c7e0e754-51c0-4ef7-9b8b-4c18f7db1a69" + "b1e19372-aaa5-490c-a536-7815bdf93eb4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052536Z:c7e0e754-51c0-4ef7-9b8b-4c18f7db1a69" + "CENTRALUS:20151229T092841Z:b1e19372-aaa5-490c-a536-7815bdf93eb4" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:36 GMT" + "Tue, 29 Dec 2015 09:28:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account11-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQxMS1Hcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b526305c-026e-411c-9c48-88fd70a6092f-2015-11-18 05:25:38Z-P" + "8e37999f-0487-4fde-850e-db7e7a941456-2015-12-29 09:28:41Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/05aa0992-6033-44f6-86cb-5e20bb05aee6\",\r\n \"name\": \"05aa0992-6033-44f6-86cb-5e20bb05aee6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"cloud\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3\",\r\n \"name\": \"19996177-88ca-4aa8-8fe6-8ae9198c06d3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"cloud9\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/38e252d5-6243-472d-91d0-76874ee5f5f1\",\r\n \"name\": \"38e252d5-6243-472d-91d0-76874ee5f5f1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"signoff102e2acloud\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/42432614-e000-4cb9-8827-a49ea1d0d3cc\",\r\n \"name\": \"42432614-e000-4cb9-8827-a49ea1d0d3cc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"d2\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/7c3641bb-d572-4d56-80da-498440f924e7\",\r\n \"name\": \"7c3641bb-d572-4d56-80da-498440f924e7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"d1\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/b007f06c-646c-4978-a7bd-2a3d1a13110e\",\r\n \"name\": \"b007f06c-646c-4978-a7bd-2a3d1a13110e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"alokSec\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/de58c031-820e-4e1a-9505-763523bb69c5\",\r\n \"name\": \"de58c031-820e-4e1a-9505-763523bb69c5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"alokPri\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/f0982c81-dfb1-4bfa-ba0d-a7d941f6e8c7\",\r\n \"name\": \"f0982c81-dfb1-4bfa-ba0d-a7d941f6e8c7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"azurecloud\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/ff10d996-9083-4aee-b99d-7f7f44c81118\",\r\n \"name\": \"ff10d996-9083-4aee-b99d-7f7f44c81118\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"rec\",\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}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "5829" + "12" ], "Content-Type": [ "application/json" @@ -2167,62 +2059,55 @@ "no-cache" ], "x-ms-request-id": [ - "b526305c-026e-411c-9c48-88fd70a6092f-2015-11-18 05:25:38Z-P 11/18/2015 5:25:39 AM" + "2c591733-3190-40cf-a0cc-1775d2a48117" + ], + "x-ms-client-request-id": [ + "8e37999f-0487-4fde-850e-db7e7a941456-2015-12-29 09:28:41Z-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": [ - "b526305c-026e-411c-9c48-88fd70a6092f-2015-11-18 05:25:38Z-P" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14969" ], "x-ms-correlation-request-id": [ - "ed030636-4e8e-452c-b89b-910e07159c09" + "2c591733-3190-40cf-a0cc-1775d2a48117" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052539Z:ed030636-4e8e-452c-b89b-910e07159c09" + "CENTRALUS:20151229T092841Z:2c591733-3190-40cf-a0cc-1775d2a48117" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:38 GMT" + "Tue, 29 Dec 2015 09:28:41 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/05aa0992-6033-44f6-86cb-5e20bb05aee6/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzLzA1YWEwOTkyLTYwMzMtNDRmNi04NmNiLTVlMjBiYjA1YWVlNi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account676767-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQ2NzY3NjctR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "182e75e3-6af1-4d5b-964a-b03c6cb34af3-2015-11-18 05:25:39Z-P" + "e261c500-9020-4341-96ef-cb0740a3e47b-2015-12-29 09:28:41Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "28" + "12" ], "Content-Type": [ "application/json" @@ -2234,62 +2119,55 @@ "no-cache" ], "x-ms-request-id": [ - "182e75e3-6af1-4d5b-964a-b03c6cb34af3-2015-11-18 05:25:39Z-P 11/18/2015 5:25:41 AM" + "21e56730-19fe-408d-b4b7-578fe5e02f5c" + ], + "x-ms-client-request-id": [ + "e261c500-9020-4341-96ef-cb0740a3e47b-2015-12-29 09:28:41Z-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": [ - "182e75e3-6af1-4d5b-964a-b03c6cb34af3-2015-11-18 05:25:39Z-P" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14968" ], "x-ms-correlation-request-id": [ - "7c63649f-59f3-406e-a0c8-88ac2d4cf775" + "21e56730-19fe-408d-b4b7-578fe5e02f5c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052540Z:7c63649f-59f3-406e-a0c8-88ac2d4cf775" + "CENTRALUS:20151229T092842Z:21e56730-19fe-408d-b4b7-578fe5e02f5c" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:40 GMT" + "Tue, 29 Dec 2015 09:28:41 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzLzE5OTk2MTc3LTg4Y2EtNGFhOC04ZmU2LThhZTkxOThjMDZkMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account99-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQ5OS1Hcm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9221aa2a-cd1c-4b24-a4ae-2d8842c10a2e-2015-11-18 05:25:41Z-P" + "3d18d2f0-a5e5-43d7-9c8d-c544ef9c71ce-2015-12-29 09:28:42Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "28" + "12" ], "Content-Type": [ "application/json" @@ -2301,62 +2179,55 @@ "no-cache" ], "x-ms-request-id": [ - "9221aa2a-cd1c-4b24-a4ae-2d8842c10a2e-2015-11-18 05:25:41Z-P 11/18/2015 5:25:42 AM" + "16aeef80-c847-4677-a395-f2c3f63d8a8c" + ], + "x-ms-client-request-id": [ + "3d18d2f0-a5e5-43d7-9c8d-c544ef9c71ce-2015-12-29 09:28:42Z-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": [ - "9221aa2a-cd1c-4b24-a4ae-2d8842c10a2e-2015-11-18 05:25:41Z-P" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14967" ], "x-ms-correlation-request-id": [ - "ac301bcc-6203-4dd5-9530-948b22d1d403" + "16aeef80-c847-4677-a395-f2c3f63d8a8c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052542Z:ac301bcc-6203-4dd5-9530-948b22d1d403" + "CENTRALUS:20151229T092842Z:16aeef80-c847-4677-a395-f2c3f63d8a8c" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:42 GMT" + "Tue, 29 Dec 2015 09:28:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/38e252d5-6243-472d-91d0-76874ee5f5f1/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzLzM4ZTI1MmQ1LTYyNDMtNDcyZC05MWQwLTc2ODc0ZWU1ZjVmMS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/VS-Account9-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL1ZTLUFjY291bnQ5LUdyb3VwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "876d66ec-08d5-4990-bd1a-5ad8303b1dc6-2015-11-18 05:25:42Z-P" + "507546fe-5f68-4166-a22b-b008d311a22b-2015-12-29 09:28:42Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "28" + "12" ], "Content-Type": [ "application/json" @@ -2368,62 +2239,55 @@ "no-cache" ], "x-ms-request-id": [ - "876d66ec-08d5-4990-bd1a-5ad8303b1dc6-2015-11-18 05:25:42Z-P 11/18/2015 5:25:43 AM" + "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" ], - "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": [ - "876d66ec-08d5-4990-bd1a-5ad8303b1dc6-2015-11-18 05:25:42Z-P" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14966" ], "x-ms-correlation-request-id": [ - "baf022c6-3ec7-44ae-8e9e-0f3ffe735d8d" + "d72431d9-2e66-4347-9bc6-8491502e3e95" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052543Z:baf022c6-3ec7-44ae-8e9e-0f3ffe735d8d" + "CENTRALUS:20151229T092843Z:d72431d9-2e66-4347-9bc6-8491502e3e95" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:25:43 GMT" + "Tue, 29 Dec 2015 09:28:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/42432614-e000-4cb9-8827-a49ea1d0d3cc/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzLzQyNDMyNjE0LWUwMDAtNGNiOS04ODI3LWE0OWVhMWQwZDNjYy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "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": [ - "c78a80c9-6cef-47ef-a652-adfbe650cc85-2015-11-18 05:25:43Z-P" + "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/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "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": [ - "28" + "580" ], "Content-Type": [ "application/json" @@ -2435,7 +2299,7 @@ "no-cache" ], "x-ms-request-id": [ - "c78a80c9-6cef-47ef-a652-adfbe650cc85-2015-11-18 05:25:43Z-P 11/18/2015 5:25:45 AM" + "32e6f447-ff84-44dd-baa3-66cb7b3719bd-2015-12-29 09:28:44Z-P 12/29/2015 9:28:45 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2454,43 +2318,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "c78a80c9-6cef-47ef-a652-adfbe650cc85-2015-11-18 05:25:43Z-P" + "32e6f447-ff84-44dd-baa3-66cb7b3719bd-2015-12-29 09:28:44Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14994" ], "x-ms-correlation-request-id": [ - "b1b14831-9f10-451c-86f3-7ffeaa547389" + "b9ca0265-1d33-4457-a1f0-6dfafb7cd32e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052544Z:b1b14831-9f10-451c-86f3-7ffeaa547389" + "CENTRALUS:20151229T092846Z:b9ca0265-1d33-4457-a1f0-6dfafb7cd32e" ], "Date": [ - "Wed, 18 Nov 2015 05:25:44 GMT" + "Tue, 29 Dec 2015 09:28:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/7c3641bb-d572-4d56-80da-498440f924e7/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzLzdjMzY0MWJiLWQ1NzItNGQ1Ni04MGRhLTQ5ODQ0MGY5MjRlNy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "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": [ - "37c09ca9-853d-424e-807a-9692352c12e8-2015-11-18 05:25:45Z-P" + "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/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "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": [ - "28" + "580" ], "Content-Type": [ "application/json" @@ -2502,7 +2366,7 @@ "no-cache" ], "x-ms-request-id": [ - "37c09ca9-853d-424e-807a-9692352c12e8-2015-11-18 05:25:45Z-P 11/18/2015 5:25:46 AM" + "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" @@ -2521,43 +2385,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "37c09ca9-853d-424e-807a-9692352c12e8-2015-11-18 05:25:45Z-P" + "7d09ff5c-ed99-4123-b444-7a52dec8cc4d-2015-12-29 09:28:48Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14992" ], "x-ms-correlation-request-id": [ - "ee86dcfd-4163-4cfd-ad76-df275de83f37" + "23b6f336-2913-4370-97a5-0a4bc0090e9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052546Z:ee86dcfd-4163-4cfd-ad76-df275de83f37" + "CENTRALUS:20151229T092849Z:23b6f336-2913-4370-97a5-0a4bc0090e9c" ], "Date": [ - "Wed, 18 Nov 2015 05:25:46 GMT" + "Tue, 29 Dec 2015 09:28:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/b007f06c-646c-4978-a7bd-2a3d1a13110e/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL2IwMDdmMDZjLTY0NmMtNDk3OC1hN2JkLTJhM2QxYTEzMTEwZS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "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": [ - "601ff267-1adc-4c8d-ab99-b30481edbaa4-2015-11-18 05:25:46Z-P" + "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/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "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": [ - "28" + "1564" ], "Content-Type": [ "application/json" @@ -2569,7 +2433,7 @@ "no-cache" ], "x-ms-request-id": [ - "601ff267-1adc-4c8d-ab99-b30481edbaa4-2015-11-18 05:25:46Z-P 11/18/2015 5:25:47 AM" + "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" @@ -2588,43 +2452,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "601ff267-1adc-4c8d-ab99-b30481edbaa4-2015-11-18 05:25:46Z-P" + "cd622e5c-d307-4f20-a6cc-8bd38567d930-2015-12-29 09:28:46Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14993" ], "x-ms-correlation-request-id": [ - "038977a3-08f0-4a14-a3b7-cc04ded59408" + "6f10b170-f3bf-412e-9883-dba63e80e796" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052547Z:038977a3-08f0-4a14-a3b7-cc04ded59408" + "CENTRALUS:20151229T092847Z:6f10b170-f3bf-412e-9883-dba63e80e796" ], "Date": [ - "Wed, 18 Nov 2015 05:25:47 GMT" + "Tue, 29 Dec 2015 09:28:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/de58c031-820e-4e1a-9505-763523bb69c5/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL2RlNThjMDMxLTgyMGUtNGUxYS05NTA1LTc2MzUyM2JiNjljNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24d060ee-91c4-4e92-8f80-1b324ac84688-2015-11-18 05:25:47Z-P" + "1bbe4391-b1ee-417b-84ef-b0647785592e-2015-12-29 09:28:50Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "28" + "629" ], "Content-Type": [ "application/json" @@ -2636,7 +2500,7 @@ "no-cache" ], "x-ms-request-id": [ - "24d060ee-91c4-4e92-8f80-1b324ac84688-2015-11-18 05:25:47Z-P 11/18/2015 5:25:49 AM" + "1bbe4391-b1ee-417b-84ef-b0647785592e-2015-12-29 09:28:50Z-P 12/29/2015 9:28:50 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2655,43 +2519,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "24d060ee-91c4-4e92-8f80-1b324ac84688-2015-11-18 05:25:47Z-P" + "1bbe4391-b1ee-417b-84ef-b0647785592e-2015-12-29 09:28:50Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14991" ], "x-ms-correlation-request-id": [ - "9126bf08-0266-416a-9c46-6fedc028d795" + "193e084e-f1ca-4cbf-9aea-5bb3a65f6d83" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052548Z:9126bf08-0266-416a-9c46-6fedc028d795" + "CENTRALUS:20151229T092851Z:193e084e-f1ca-4cbf-9aea-5bb3a65f6d83" ], "Date": [ - "Wed, 18 Nov 2015 05:25:48 GMT" + "Tue, 29 Dec 2015 09:28:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/f0982c81-dfb1-4bfa-ba0d-a7d941f6e8c7/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL2YwOTgyYzgxLWRmYjEtNGJmYS1iYTBkLWE3ZDk0MWY2ZThjNy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "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==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "665bd1c8-d687-4486-90be-efe4ac510c68-2015-11-18 05:25:49Z-P" + "398237de-28bf-4afe-ae51-76a47ae1b3ec-2015-12-29 09:28:51Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "28" + "1140" ], "Content-Type": [ "application/json" @@ -2703,7 +2567,7 @@ "no-cache" ], "x-ms-request-id": [ - "665bd1c8-d687-4486-90be-efe4ac510c68-2015-11-18 05:25:49Z-P 11/18/2015 5:25:50 AM" + "398237de-28bf-4afe-ae51-76a47ae1b3ec-2015-12-29 09:28:51Z-P 12/29/2015 9:28:52 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2722,43 +2586,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "665bd1c8-d687-4486-90be-efe4ac510c68-2015-11-18 05:25:49Z-P" + "398237de-28bf-4afe-ae51-76a47ae1b3ec-2015-12-29 09:28:51Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14990" ], "x-ms-correlation-request-id": [ - "02fdf1fb-f6f5-4c9f-8353-4c6defb27151" + "e2e1c580-f071-4ac6-9459-09ec4badc088" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052550Z:02fdf1fb-f6f5-4c9f-8353-4c6defb27151" + "CENTRALUS:20151229T092852Z:e2e1c580-f071-4ac6-9459-09ec4badc088" ], "Date": [ - "Wed, 18 Nov 2015 05:25:49 GMT" + "Tue, 29 Dec 2015 09:28:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/ff10d996-9083-4aee-b99d-7f7f44c81118/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL2ZmMTBkOTk2LTkwODMtNGFlZS1iOTlkLTdmN2Y0NGM4MTExOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwdGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc97e1e9-6e98-49cc-a1ff-f0450a3404bf-2015-11-18 05:25:50Z-P" + "8840e1af-dfa3-4d56-8a73-0b17e996819e-2015-12-29 09:28:53Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "28" + "663" ], "Content-Type": [ "application/json" @@ -2770,7 +2634,7 @@ "no-cache" ], "x-ms-request-id": [ - "fc97e1e9-6e98-49cc-a1ff-f0450a3404bf-2015-11-18 05:25:50Z-P 11/18/2015 5:25:51 AM" + "8840e1af-dfa3-4d56-8a73-0b17e996819e-2015-12-29 09:28:53Z-P 12/29/2015 9:28:54 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2789,19 +2653,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "fc97e1e9-6e98-49cc-a1ff-f0450a3404bf-2015-11-18 05:25:50Z-P" + "8840e1af-dfa3-4d56-8a73-0b17e996819e-2015-12-29 09:28:53Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14989" ], "x-ms-correlation-request-id": [ - "bd9bf617-92db-4fbc-8274-b901f35eceee" + "0fe9554f-40c3-4cbd-89a2-bc37e3ee83d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T052551Z:bd9bf617-92db-4fbc-8274-b901f35eceee" + "CENTRALUS:20151229T092854Z:0fe9554f-40c3-4cbd-89a2-bc37e3ee83d3" ], "Date": [ - "Wed, 18 Nov 2015 05:25:51 GMT" + "Tue, 29 Dec 2015 09:28:53 GMT" ] }, "StatusCode": 200 @@ -2809,6 +2673,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "00a07ea0-ad8b-491c-9de8-77bf10881499" + "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" } } \ 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 ef86e0cb9f06..794c46144750 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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14980" ], "x-ms-request-id": [ - "115e6975-e032-4beb-8831-1c79ae1670a1" + "23adcb61-74c2-4af9-bab2-e3b7b79d2ae1" ], "x-ms-correlation-request-id": [ - "115e6975-e032-4beb-8831-1c79ae1670a1" + "23adcb61-74c2-4af9-bab2-e3b7b79d2ae1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054427Z:115e6975-e032-4beb-8831-1c79ae1670a1" + "CENTRALUS:20151229T093815Z:23adcb61-74c2-4af9-bab2-e3b7b79d2ae1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:27 GMT" + "Tue, 29 Dec 2015 09:38:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14978" ], "x-ms-request-id": [ - "6fc813bf-e3a0-44b9-a58a-39f8ffe47970" + "a053a652-9271-4500-9cb4-5b1dc89f530b" ], "x-ms-correlation-request-id": [ - "6fc813bf-e3a0-44b9-a58a-39f8ffe47970" + "a053a652-9271-4500-9cb4-5b1dc89f530b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054430Z:6fc813bf-e3a0-44b9-a58a-39f8ffe47970" + "CENTRALUS:20151229T093817Z:a053a652-9271-4500-9cb4-5b1dc89f530b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:29 GMT" + "Tue, 29 Dec 2015 09:38:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14976" ], "x-ms-request-id": [ - "6150185f-c248-4cdb-bdea-a19996ae2235" + "f8fbebfe-4d37-40a1-95c0-17e055aba358" ], "x-ms-correlation-request-id": [ - "6150185f-c248-4cdb-bdea-a19996ae2235" + "f8fbebfe-4d37-40a1-95c0-17e055aba358" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054433Z:6150185f-c248-4cdb-bdea-a19996ae2235" + "CENTRALUS:20151229T093819Z:f8fbebfe-4d37-40a1-95c0-17e055aba358" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:33 GMT" + "Tue, 29 Dec 2015 09:38:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -163,13 +163,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,16 +181,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14974" ], "x-ms-request-id": [ - "f169c3f5-09ba-4ebc-a433-ae55b9e413f2" + "43db38f0-1c25-4ab2-9c6b-c620cd1ed9c7" ], "x-ms-correlation-request-id": [ - "f169c3f5-09ba-4ebc-a433-ae55b9e413f2" + "43db38f0-1c25-4ab2-9c6b-c620cd1ed9c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054435Z:f169c3f5-09ba-4ebc-a433-ae55b9e413f2" + "CENTRALUS:20151229T093821Z:43db38f0-1c25-4ab2-9c6b-c620cd1ed9c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,14 +199,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:35 GMT" + "Tue, 29 Dec 2015 09:38:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -214,13 +214,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,16 +232,118 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14972" + ], + "x-ms-request-id": [ + "bb1ec194-0a7e-4453-a135-11672982b2bd" + ], + "x-ms-correlation-request-id": [ + "bb1ec194-0a7e-4453-a135-11672982b2bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T093823Z:bb1ec194-0a7e-4453-a135-11672982b2bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:38:23 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": [ + "14970" + ], + "x-ms-request-id": [ + "ff3cf105-82fe-4dd2-ba3b-574f983c222c" + ], + "x-ms-correlation-request-id": [ + "ff3cf105-82fe-4dd2-ba3b-574f983c222c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T093824Z:ff3cf105-82fe-4dd2-ba3b-574f983c222c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:38:24 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": [ + "14968" ], "x-ms-request-id": [ - "8052f0a3-3fdf-422d-898a-bf5115cbdeee" + "7cf07f8b-692d-4389-8b86-cae52cccb072" ], "x-ms-correlation-request-id": [ - "8052f0a3-3fdf-422d-898a-bf5115cbdeee" + "7cf07f8b-692d-4389-8b86-cae52cccb072" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054436Z:8052f0a3-3fdf-422d-898a-bf5115cbdeee" + "CENTRALUS:20151229T093826Z:7cf07f8b-692d-4389-8b86-cae52cccb072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,31 +352,31 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:36 GMT" + "Tue, 29 Dec 2015 09:38:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "3b2a4786-89e5-4c5a-8577-020c6f80026f-2015-11-18 05:44:27Z-P" + "d866489b-e0c7-4275-a1a1-c7db914c5e27-2015-12-29 09:38:15Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -286,28 +388,28 @@ "no-cache" ], "x-ms-request-id": [ - "c67bb10d-73b7-4572-8f16-32886a097936" + "3329b58f-f40d-4946-bcc8-63e95a088c7b" ], "x-ms-client-request-id": [ - "3b2a4786-89e5-4c5a-8577-020c6f80026f-2015-11-18 05:44:27Z-P" + "d866489b-e0c7-4275-a1a1-c7db914c5e27-2015-12-29 09:38:15Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14979" ], "x-ms-correlation-request-id": [ - "c67bb10d-73b7-4572-8f16-32886a097936" + "3329b58f-f40d-4946-bcc8-63e95a088c7b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054430Z:c67bb10d-73b7-4572-8f16-32886a097936" + "CENTRALUS:20151229T093817Z:3329b58f-f40d-4946-bcc8-63e95a088c7b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:29 GMT" + "Tue, 29 Dec 2015 09:38:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -316,25 +418,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "39ec4f05-971d-4075-b601-51d728dfdc9e-2015-11-18 05:44:29Z-P" + "57ae9d5a-f3ec-4489-9ebc-ac770af6503a-2015-12-29 09:38:17Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -346,28 +448,28 @@ "no-cache" ], "x-ms-request-id": [ - "73f73ff7-8267-430b-9328-488cd8b5e0e1" + "c424a831-80c0-47ad-bb54-6f513bf33705" ], "x-ms-client-request-id": [ - "39ec4f05-971d-4075-b601-51d728dfdc9e-2015-11-18 05:44:29Z-P" + "57ae9d5a-f3ec-4489-9ebc-ac770af6503a-2015-12-29 09:38:17Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14977" ], "x-ms-correlation-request-id": [ - "73f73ff7-8267-430b-9328-488cd8b5e0e1" + "c424a831-80c0-47ad-bb54-6f513bf33705" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054430Z:73f73ff7-8267-430b-9328-488cd8b5e0e1" + "CENTRALUS:20151229T093818Z:c424a831-80c0-47ad-bb54-6f513bf33705" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:30 GMT" + "Tue, 29 Dec 2015 09:38:17 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -376,25 +478,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "2e79a199-e441-44fe-9372-0a9bd7731815-2015-11-18 05:44:33Z-P" + "3170fde2-9aeb-4ef6-8715-66ccdad0280d-2015-12-29 09:38:19Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -406,28 +508,28 @@ "no-cache" ], "x-ms-request-id": [ - "acc2457a-b5b7-4307-a03c-8351f22f0850" + "b5fc0711-56d8-47a7-b74c-d9b452499522" ], "x-ms-client-request-id": [ - "2e79a199-e441-44fe-9372-0a9bd7731815-2015-11-18 05:44:33Z-P" + "3170fde2-9aeb-4ef6-8715-66ccdad0280d-2015-12-29 09:38:19Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14975" ], "x-ms-correlation-request-id": [ - "acc2457a-b5b7-4307-a03c-8351f22f0850" + "b5fc0711-56d8-47a7-b74c-d9b452499522" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054434Z:acc2457a-b5b7-4307-a03c-8351f22f0850" + "CENTRALUS:20151229T093820Z:b5fc0711-56d8-47a7-b74c-d9b452499522" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:34 GMT" + "Tue, 29 Dec 2015 09:38:19 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -436,25 +538,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "cc17e112-a6a8-4603-b227-68b1b70d76bb-2015-11-18 05:44:35Z-P" + "5f8115d6-c1d2-4c81-9dcb-697fa721f661-2015-12-29 09:38:21Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -466,28 +568,148 @@ "no-cache" ], "x-ms-request-id": [ - "8637d80e-5155-43c5-a031-a61515d771e5" + "c1467fad-1860-4a17-95da-0547ba41a4bd" ], "x-ms-client-request-id": [ - "cc17e112-a6a8-4603-b227-68b1b70d76bb-2015-11-18 05:44:35Z-P" + "5f8115d6-c1d2-4c81-9dcb-697fa721f661-2015-12-29 09:38:21Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14973" + ], + "x-ms-correlation-request-id": [ + "c1467fad-1860-4a17-95da-0547ba41a4bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T093822Z:c1467fad-1860-4a17-95da-0547ba41a4bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:38:22 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": [ + "ca7dece5-ce52-42fc-9ca6-b87bacbb6523-2015-12-29 09:38: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\": \"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": [ + "e6d39238-516e-42ed-88fb-78cf40d8ea42" + ], + "x-ms-client-request-id": [ + "ca7dece5-ce52-42fc-9ca6-b87bacbb6523-2015-12-29 09:38:23Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "e6d39238-516e-42ed-88fb-78cf40d8ea42" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T093823Z:e6d39238-516e-42ed-88fb-78cf40d8ea42" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:38:23 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": [ + "769a1d94-0ddd-4b7b-9125-c6ca1bf352de-2015-12-29 09:38: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\": \"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": [ + "9462e359-dd96-477f-968f-785587cc08e9" + ], + "x-ms-client-request-id": [ + "769a1d94-0ddd-4b7b-9125-c6ca1bf352de-2015-12-29 09:38:24Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" ], "x-ms-correlation-request-id": [ - "8637d80e-5155-43c5-a031-a61515d771e5" + "9462e359-dd96-477f-968f-785587cc08e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054435Z:8637d80e-5155-43c5-a031-a61515d771e5" + "CENTRALUS:20151229T093825Z:9462e359-dd96-477f-968f-785587cc08e9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:35 GMT" + "Tue, 29 Dec 2015 09:38:25 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -496,25 +718,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "1a0100d7-7d9b-4121-9623-594d7c9df506-2015-11-18 05:44:36Z-P" + "6d6d807d-d3db-4c91-8c35-0163d3dd3ad0-2015-12-29 09:38:26Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -526,55 +748,189 @@ "no-cache" ], "x-ms-request-id": [ - "899cd5a7-4017-44f1-9276-5825d8aca1a1" + "2a18ae37-4d11-4e10-b9ef-45acac851d0a" ], "x-ms-client-request-id": [ - "1a0100d7-7d9b-4121-9623-594d7c9df506-2015-11-18 05:44:36Z-P" + "6d6d807d-d3db-4c91-8c35-0163d3dd3ad0-2015-12-29 09:38:26Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14967" ], "x-ms-correlation-request-id": [ - "899cd5a7-4017-44f1-9276-5825d8aca1a1" + "2a18ae37-4d11-4e10-b9ef-45acac851d0a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054437Z:899cd5a7-4017-44f1-9276-5825d8aca1a1" + "CENTRALUS:20151229T093827Z:2a18ae37-4d11-4e10-b9ef-45acac851d0a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:44:36 GMT" + "Tue, 29 Dec 2015 09:38:26 GMT" + ], + "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": [ + "532fdae8-9551-4f63-a72a-dc0876b582a5-2015-12-29 09:38: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 \"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": [ + "532fdae8-9551-4f63-a72a-dc0876b582a5-2015-12-29 09:38:17Z-P 12/29/2015 9:38:19 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": [ + "532fdae8-9551-4f63-a72a-dc0876b582a5-2015-12-29 09:38:17Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "63a1a868-81fe-4bba-9706-ac612ae3e3a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T093819Z:63a1a868-81fe-4bba-9706-ac612ae3e3a8" + ], + "Date": [ + "Tue, 29 Dec 2015 09:38:19 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", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c748367-6dd2-4c4d-98c5-f94d86d6cd83-2015-12-29 09:38:20Z-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/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}", + "ResponseHeaders": { + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "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" + ], + "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": [ + "2c748367-6dd2-4c4d-98c5-f94d86d6cd83-2015-12-29 09:38:20Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "436f7a20-170a-499b-917c-ebd50412769d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T093821Z:436f7a20-170a-499b-917c-ebd50412769d" + ], + "Date": [ + "Tue, 29 Dec 2015 09:38:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "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==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef788944-92c3-4095-9c33-e1cdef82a888-2015-11-18 05:44:30Z-P" + "30adac37-3502-4223-a6fe-d6f48f06c07f-2015-12-29 09:38:22Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"1E2FACEB11F6AFAEE55459CED4F1442E0E56D9BA\",\r\n \"kekCertExpiryDate\": \"2018-11-12T19:37:42Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"57f95c35-6c83-42ce-bb21-2c4f10f92d8e\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "783" + "2255" ], "Content-Type": [ "application/json" @@ -586,7 +942,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef788944-92c3-4095-9c33-e1cdef82a888-2015-11-18 05:44:30Z-P 11/18/2015 5:44:33 AM" + "30adac37-3502-4223-a6fe-d6f48f06c07f-2015-12-29 09:38:22Z-P 12/29/2015 9:38:22 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -605,43 +961,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "ef788944-92c3-4095-9c33-e1cdef82a888-2015-11-18 05:44:30Z-P" + "30adac37-3502-4223-a6fe-d6f48f06c07f-2015-12-29 09:38:22Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14994" ], "x-ms-correlation-request-id": [ - "4ca5543a-3cad-422f-8069-4ac17b96b2c0" + "a5a62372-a747-4dc1-a5c7-6caa1538a6ba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054433Z:4ca5543a-3cad-422f-8069-4ac17b96b2c0" + "CENTRALUS:20151229T093823Z:a5a62372-a747-4dc1-a5c7-6caa1538a6ba" ], "Date": [ - "Wed, 18 Nov 2015 05:44:33 GMT" + "Tue, 29 Dec 2015 09:38:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4beda01b-82af-40da-96f6-1cb707db8bd6-2015-11-18 05:44:33Z-P" + "bfba9867-c692-4ffb-af1e-01190ab65270-2015-12-29 09:38:23Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/05aa0992-6033-44f6-86cb-5e20bb05aee6\",\r\n \"name\": \"05aa0992-6033-44f6-86cb-5e20bb05aee6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"cloud\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3\",\r\n \"name\": \"19996177-88ca-4aa8-8fe6-8ae9198c06d3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"cloud9\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/38e252d5-6243-472d-91d0-76874ee5f5f1\",\r\n \"name\": \"38e252d5-6243-472d-91d0-76874ee5f5f1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"signoff102e2acloud\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/42432614-e000-4cb9-8827-a49ea1d0d3cc\",\r\n \"name\": \"42432614-e000-4cb9-8827-a49ea1d0d3cc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"d2\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/7c3641bb-d572-4d56-80da-498440f924e7\",\r\n \"name\": \"7c3641bb-d572-4d56-80da-498440f924e7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"d1\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/b007f06c-646c-4978-a7bd-2a3d1a13110e\",\r\n \"name\": \"b007f06c-646c-4978-a7bd-2a3d1a13110e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"alokSec\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/de58c031-820e-4e1a-9505-763523bb69c5\",\r\n \"name\": \"de58c031-820e-4e1a-9505-763523bb69c5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"alokPri\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/f0982c81-dfb1-4bfa-ba0d-a7d941f6e8c7\",\r\n \"name\": \"f0982c81-dfb1-4bfa-ba0d-a7d941f6e8c7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"azurecloud\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/ff10d996-9083-4aee-b99d-7f7f44c81118\",\r\n \"name\": \"ff10d996-9083-4aee-b99d-7f7f44c81118\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"rec\",\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}", + "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}", "ResponseHeaders": { "Content-Length": [ - "5829" + "697" ], "Content-Type": [ "application/json" @@ -653,7 +1009,7 @@ "no-cache" ], "x-ms-request-id": [ - "4beda01b-82af-40da-96f6-1cb707db8bd6-2015-11-18 05:44:33Z-P 11/18/2015 5:44:35 AM" + "bfba9867-c692-4ffb-af1e-01190ab65270-2015-12-29 09:38:23Z-P 12/29/2015 9:38:24 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,43 +1028,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "4beda01b-82af-40da-96f6-1cb707db8bd6-2015-11-18 05:44:33Z-P" + "bfba9867-c692-4ffb-af1e-01190ab65270-2015-12-29 09:38:23Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14993" ], "x-ms-correlation-request-id": [ - "d8b33fac-f21b-47c2-b516-52a73b30fc9e" + "9ed8e26f-c9e9-44ce-8c55-56096c61a80e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054435Z:d8b33fac-f21b-47c2-b516-52a73b30fc9e" + "CENTRALUS:20151229T093824Z:9ed8e26f-c9e9-44ce-8c55-56096c61a80e" ], "Date": [ - "Wed, 18 Nov 2015 05:44:34 GMT" + "Tue, 29 Dec 2015 09:38:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzLzE5OTk2MTc3LTg4Y2EtNGFhOC04ZmU2LThhZTkxOThjMDZkMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwdGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee77939-f267-4c5b-97d4-c56c65ee0357-2015-11-18 05:44:35Z-P" + "a01a925c-78c6-454b-98e9-f87cafa43ff3-2015-12-29 09:38:25Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "28" + "663" ], "Content-Type": [ "application/json" @@ -720,7 +1076,7 @@ "no-cache" ], "x-ms-request-id": [ - "8ee77939-f267-4c5b-97d4-c56c65ee0357-2015-11-18 05:44:35Z-P 11/18/2015 5:44:36 AM" + "a01a925c-78c6-454b-98e9-f87cafa43ff3-2015-12-29 09:38:25Z-P 12/29/2015 9:38:26 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,43 +1095,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "8ee77939-f267-4c5b-97d4-c56c65ee0357-2015-11-18 05:44:35Z-P" + "a01a925c-78c6-454b-98e9-f87cafa43ff3-2015-12-29 09:38:25Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14992" ], "x-ms-correlation-request-id": [ - "46a05c99-5a26-4ccf-b1e7-5904d32e7eb7" + "cca6271f-24e7-40d3-98bd-fbd2abb0207e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054436Z:46a05c99-5a26-4ccf-b1e7-5904d32e7eb7" + "CENTRALUS:20151229T093826Z:cca6271f-24e7-40d3-98bd-fbd2abb0207e" ], "Date": [ - "Wed, 18 Nov 2015 05:44:36 GMT" + "Tue, 29 Dec 2015 09:38:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b4a8df0-68c1-43b2-8cee-90561631734b-2015-11-18 05:44:36Z-P" + "4fc1282c-bdb7-4515-bf1e-975ccfa66592-2015-12-29 09:38:27Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.RecoveryServices/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.Storage/storageAccounts/sa5151\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "677" + "1389" ], "Content-Type": [ "application/json" @@ -787,7 +1143,7 @@ "no-cache" ], "x-ms-request-id": [ - "4b4a8df0-68c1-43b2-8cee-90561631734b-2015-11-18 05:44:36Z-P 11/18/2015 5:44:38 AM" + "4fc1282c-bdb7-4515-bf1e-975ccfa66592-2015-12-29 09:38:27Z-P 12/29/2015 9:38:27 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -806,19 +1162,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "4b4a8df0-68c1-43b2-8cee-90561631734b-2015-11-18 05:44:36Z-P" + "4fc1282c-bdb7-4515-bf1e-975ccfa66592-2015-12-29 09:38:27Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14991" ], "x-ms-correlation-request-id": [ - "09f1ebf4-ae2f-46e3-8fd4-eee5ee36df54" + "884e948c-88f9-46ed-bf1e-eaa0b038c507" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054437Z:09f1ebf4-ae2f-46e3-8fd4-eee5ee36df54" + "CENTRALUS:20151229T093827Z:884e948c-88f9-46ed-bf1e-eaa0b038c507" ], "Date": [ - "Wed, 18 Nov 2015 05:44:37 GMT" + "Tue, 29 Dec 2015 09:38:27 GMT" ] }, "StatusCode": 200 @@ -826,6 +1182,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "00a07ea0-ad8b-491c-9de8-77bf10881499" + "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" } } \ 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 6218b580e29a..9ed38f0fea1b 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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14997" ], "x-ms-request-id": [ - "3c52ef17-bf59-49e3-aaf9-123351e08fe1" + "8460aa0b-e7ae-4c16-85cc-37fcd04adec6" ], "x-ms-correlation-request-id": [ - "3c52ef17-bf59-49e3-aaf9-123351e08fe1" + "8460aa0b-e7ae-4c16-85cc-37fcd04adec6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054320Z:3c52ef17-bf59-49e3-aaf9-123351e08fe1" + "CENTRALUS:20151229T093115Z:8460aa0b-e7ae-4c16-85cc-37fcd04adec6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:43:20 GMT" + "Tue, 29 Dec 2015 09:31:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14995" ], "x-ms-request-id": [ - "c15c919b-8afe-4d9b-83b2-af1c6ae4b989" + "227b955e-8f85-4547-9bb8-f3a8fb9a9f9e" ], "x-ms-correlation-request-id": [ - "c15c919b-8afe-4d9b-83b2-af1c6ae4b989" + "227b955e-8f85-4547-9bb8-f3a8fb9a9f9e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054324Z:c15c919b-8afe-4d9b-83b2-af1c6ae4b989" + "CENTRALUS:20151229T093118Z:227b955e-8f85-4547-9bb8-f3a8fb9a9f9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:43:24 GMT" + "Tue, 29 Dec 2015 09:31:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14993" ], "x-ms-request-id": [ - "8593219e-7350-446f-9a6f-176e622238b3" + "e4b82f30-f29e-410f-a863-1593ce250594" ], "x-ms-correlation-request-id": [ - "8593219e-7350-446f-9a6f-176e622238b3" + "e4b82f30-f29e-410f-a863-1593ce250594" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054328Z:8593219e-7350-446f-9a6f-176e622238b3" + "CENTRALUS:20151229T093122Z:e4b82f30-f29e-410f-a863-1593ce250594" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,31 +148,31 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:43:28 GMT" + "Tue, 29 Dec 2015 09:31:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "39916a4f-c4c2-468a-b76d-af808c373e77-2015-11-18 05:43:20Z-P" + "fec78e29-aabf-438b-990a-0bd6d59e89d4-2015-12-29 09:31:15Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -184,28 +184,28 @@ "no-cache" ], "x-ms-request-id": [ - "432d5933-4fb6-4a1b-ac42-9d21bbca7b85" + "fb1d215c-5ec8-4917-989a-aac366b9b5b6" ], "x-ms-client-request-id": [ - "39916a4f-c4c2-468a-b76d-af808c373e77-2015-11-18 05:43:20Z-P" + "fec78e29-aabf-438b-990a-0bd6d59e89d4-2015-12-29 09:31:15Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14996" ], "x-ms-correlation-request-id": [ - "432d5933-4fb6-4a1b-ac42-9d21bbca7b85" + "fb1d215c-5ec8-4917-989a-aac366b9b5b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054321Z:432d5933-4fb6-4a1b-ac42-9d21bbca7b85" + "CENTRALUS:20151229T093117Z:fb1d215c-5ec8-4917-989a-aac366b9b5b6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:43:21 GMT" + "Tue, 29 Dec 2015 09:31:17 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -214,25 +214,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "669f408c-9be9-487c-a05f-91e3539b4811-2015-11-18 05:43:23Z-P" + "8e3dbc6e-3654-4b4f-823d-981d9eca2d38-2015-12-29 09:31:18Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -244,28 +244,28 @@ "no-cache" ], "x-ms-request-id": [ - "5f58dcc1-8be6-467a-8557-c142ae950bdf" + "43d99af5-af09-4415-a263-1d7f64c68106" ], "x-ms-client-request-id": [ - "669f408c-9be9-487c-a05f-91e3539b4811-2015-11-18 05:43:23Z-P" + "8e3dbc6e-3654-4b4f-823d-981d9eca2d38-2015-12-29 09:31:18Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14994" ], "x-ms-correlation-request-id": [ - "5f58dcc1-8be6-467a-8557-c142ae950bdf" + "43d99af5-af09-4415-a263-1d7f64c68106" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054324Z:5f58dcc1-8be6-467a-8557-c142ae950bdf" + "CENTRALUS:20151229T093118Z:43d99af5-af09-4415-a263-1d7f64c68106" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:43:24 GMT" + "Tue, 29 Dec 2015 09:31:17 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -274,25 +274,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "215c0839-a0db-49f0-9dd4-2a992244864b-2015-11-18 05:43:28Z-P" + "894088d7-32b0-43f8-995b-635ec0459466-2015-12-29 09:31:22Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -304,28 +304,28 @@ "no-cache" ], "x-ms-request-id": [ - "c18087b0-1799-4447-afaa-b12e50a7fd87" + "4480005f-f440-4724-b01e-1f6995a0ab00" ], "x-ms-client-request-id": [ - "215c0839-a0db-49f0-9dd4-2a992244864b-2015-11-18 05:43:28Z-P" + "894088d7-32b0-43f8-995b-635ec0459466-2015-12-29 09:31:22Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14992" ], "x-ms-correlation-request-id": [ - "c18087b0-1799-4447-afaa-b12e50a7fd87" + "4480005f-f440-4724-b01e-1f6995a0ab00" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054329Z:c18087b0-1799-4447-afaa-b12e50a7fd87" + "CENTRALUS:20151229T093122Z:4480005f-f440-4724-b01e-1f6995a0ab00" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:43:28 GMT" + "Tue, 29 Dec 2015 09:31:22 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -334,31 +334,28 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.Storage/storageAccounts/sa5151\"\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/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/b2astorageversion1\"\r\n ],\r\n \"encryption\": \"Disable\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/Json" + "application/json" ], "Content-Length": [ - "459" - ], - "Accept": [ - "application/Json" + "487" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1447821804489)\\/\",\"NotAfterTimestamp\":\"\\/Date(1448426604489)\\/\",\"ClientRequestId\":\"6c7e3513-a146-4431-aae6-c8fb5f82f882-2015-11-18 05:43:24Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q19LbdAn5zpp5h87xUimyRqdZ80ASskvtSl5kcFNDQs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"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\":{}}" ], "x-ms-client-request-id": [ - "6c7e3513-a146-4431-aae6-c8fb5f82f882-2015-11-18 05:43:24Z-P" + "ac02f106-26e4-480a-a612-fe8fcd4a0971-2015-12-29 09:31:18Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -376,34 +373,34 @@ "30" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/Jobs/8426516d-5343-47cd-9324-c8d49907192f?api-version=2015-11-10" + "https://api-dogfood.resources.windows-int.net/Jobs/53eeae5b-e1c8-45aa-a73f-e28bd6875265?api-version=2015-11-10" ], "x-ms-request-id": [ - "6c7e3513-a146-4431-aae6-c8fb5f82f882-2015-11-18 05:43:24Z-P 11/18/2015 5:43:28 AM" + "ac02f106-26e4-480a-a612-fe8fcd4a0971-2015-12-29 09:31:18Z-P 12/29/2015 9:31:21 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-client-request-id": [ - "6c7e3513-a146-4431-aae6-c8fb5f82f882-2015-11-18 05:43:24Z-P" + "ac02f106-26e4-480a-a612-fe8fcd4a0971-2015-12-29 09:31:18Z-P" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "7774774f-d2a8-43cb-b740-99188d5fc792" + "47110516-3c4a-48f9-9aaf-5f71b4d39bd3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054328Z:7774774f-d2a8-43cb-b740-99188d5fc792" + "CENTRALUS:20151229T093121Z:47110516-3c4a-48f9-9aaf-5f71b4d39bd3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:43:28 GMT" + "Tue, 29 Dec 2015 09:31:20 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure/operationresults/8426516d-5343-47cd-9324-c8d49907192f?api-version=2015-11-10" + "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" ], "X-Powered-By": [ "ASP.NET" @@ -412,25 +409,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationJobs/8426516d-5343-47cd-9324-c8d49907192f?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkpvYnMvODQyNjUxNmQtNTM0My00N2NkLTkzMjQtYzhkNDk5MDcxOTJmP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "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=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91d44083-76aa-45b1-aea5-de26ef196ef2-2015-11-18 05:43:28Z-P" + "36e8a0b8-8049-453d-a6ed-11c078658e10-2015-12-29 09:31:22Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationJobs/8426516d-5343-47cd-9324-c8d49907192f\",\r\n \"name\": \"8426516d-5343-47cd-9324-c8d49907192f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6c7e3513-a146-4431-aae6-c8fb5f82f882-2015-11-18 05:43:24Z-P\",\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\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the protection group\",\r\n \"state\": \"NotStarted\"\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 }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2015-11-18T05:43:28.2365562Z\",\r\n \"allowedActions\": [\r\n \"Cancel\",\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"469aa0c1-8efb-4afd-b747-1286fc23d7cf\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"targetObjectName\": \"ppAzure\"\r\n }\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "1248" + "754" ], "Content-Type": [ "application/json" @@ -442,7 +439,7 @@ "no-cache" ], "x-ms-request-id": [ - "91d44083-76aa-45b1-aea5-de26ef196ef2-2015-11-18 05:43:28Z-P 11/18/2015 5:43:30 AM" + "36e8a0b8-8049-453d-a6ed-11c078658e10-2015-12-29 09:31:22Z-P 12/29/2015 9:31:23 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -461,19 +458,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "91d44083-76aa-45b1-aea5-de26ef196ef2-2015-11-18 05:43:28Z-P" + "36e8a0b8-8049-453d-a6ed-11c078658e10-2015-12-29 09:31:22Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14997" ], "x-ms-correlation-request-id": [ - "2debb387-e6a2-48eb-a0d0-48b5bcc818ba" + "c824356f-527f-4aaf-b4c7-531daac76ba8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054329Z:2debb387-e6a2-48eb-a0d0-48b5bcc818ba" + "CENTRALUS:20151229T093123Z:c824356f-527f-4aaf-b4c7-531daac76ba8" ], "Date": [ - "Wed, 18 Nov 2015 05:43:29 GMT" + "Tue, 29 Dec 2015 09:31:23 GMT" ] }, "StatusCode": 200 @@ -481,6 +478,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "00a07ea0-ad8b-491c-9de8-77bf10881499" + "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" } } \ 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 4c18c2fd05b3..5b9fd31a376e 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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14973" ], "x-ms-request-id": [ - "9fa3e1fd-2b4e-412c-b71c-241984174bb2" + "239442d3-25cc-4e83-a75a-452d7c61658f" ], "x-ms-correlation-request-id": [ - "9fa3e1fd-2b4e-412c-b71c-241984174bb2" + "239442d3-25cc-4e83-a75a-452d7c61658f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054947Z:9fa3e1fd-2b4e-412c-b71c-241984174bb2" + "CENTRALUS:20151229T094048Z:239442d3-25cc-4e83-a75a-452d7c61658f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:46 GMT" + "Tue, 29 Dec 2015 09:40:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14971" ], "x-ms-request-id": [ - "dddc0ccb-2503-49fc-bc18-0cfd53266301" + "a049f909-4dfc-4bf0-8539-5e9c7648c924" ], "x-ms-correlation-request-id": [ - "dddc0ccb-2503-49fc-bc18-0cfd53266301" + "a049f909-4dfc-4bf0-8539-5e9c7648c924" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054948Z:dddc0ccb-2503-49fc-bc18-0cfd53266301" + "CENTRALUS:20151229T094050Z:a049f909-4dfc-4bf0-8539-5e9c7648c924" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:48 GMT" + "Tue, 29 Dec 2015 09:40:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14969" ], "x-ms-request-id": [ - "5e72154a-20a4-4017-8956-3145db82222a" + "7f15190f-362b-4dd4-ac5b-e6e639862923" ], "x-ms-correlation-request-id": [ - "5e72154a-20a4-4017-8956-3145db82222a" + "7f15190f-362b-4dd4-ac5b-e6e639862923" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054951Z:5e72154a-20a4-4017-8956-3145db82222a" + "CENTRALUS:20151229T094052Z:7f15190f-362b-4dd4-ac5b-e6e639862923" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:51 GMT" + "Tue, 29 Dec 2015 09:40:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -163,13 +163,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,16 +181,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14967" ], "x-ms-request-id": [ - "72ac4f5c-42f0-49e6-9469-59df3fc2e9bf" + "b3c871a4-bc8f-42e8-95a9-931b5bfd8c6d" ], "x-ms-correlation-request-id": [ - "72ac4f5c-42f0-49e6-9469-59df3fc2e9bf" + "b3c871a4-bc8f-42e8-95a9-931b5bfd8c6d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054953Z:72ac4f5c-42f0-49e6-9469-59df3fc2e9bf" + "CENTRALUS:20151229T094054Z:b3c871a4-bc8f-42e8-95a9-931b5bfd8c6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,31 +199,31 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:52 GMT" + "Tue, 29 Dec 2015 09:40:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "96fab11c-a1e2-486e-8f24-f93a78be391f-2015-11-18 05:49:46Z-P" + "91a4ca67-01f0-42ed-9a55-f80234367a99-2015-12-29 09:40:48Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -235,28 +235,28 @@ "no-cache" ], "x-ms-request-id": [ - "d8af2386-b455-4b05-8c5f-1fa895fdf2b0" + "ce4022fd-f9bf-49fa-baf0-31ae754e31f6" ], "x-ms-client-request-id": [ - "96fab11c-a1e2-486e-8f24-f93a78be391f-2015-11-18 05:49:46Z-P" + "91a4ca67-01f0-42ed-9a55-f80234367a99-2015-12-29 09:40:48Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14972" ], "x-ms-correlation-request-id": [ - "d8af2386-b455-4b05-8c5f-1fa895fdf2b0" + "ce4022fd-f9bf-49fa-baf0-31ae754e31f6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054948Z:d8af2386-b455-4b05-8c5f-1fa895fdf2b0" + "CENTRALUS:20151229T094049Z:ce4022fd-f9bf-49fa-baf0-31ae754e31f6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:48 GMT" + "Tue, 29 Dec 2015 09:40:49 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -265,25 +265,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "3724b126-5763-494b-9648-34ba6daf959e-2015-11-18 05:49:48Z-P" + "a9315ea1-e5ac-435f-be83-f262a216bc86-2015-12-29 09:40:50Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -295,28 +295,28 @@ "no-cache" ], "x-ms-request-id": [ - "c3092e08-1be2-424d-aa27-98dc0a3a2045" + "f94caccb-8209-4954-b0e0-c89573db3924" ], "x-ms-client-request-id": [ - "3724b126-5763-494b-9648-34ba6daf959e-2015-11-18 05:49:48Z-P" + "a9315ea1-e5ac-435f-be83-f262a216bc86-2015-12-29 09:40:50Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14970" ], "x-ms-correlation-request-id": [ - "c3092e08-1be2-424d-aa27-98dc0a3a2045" + "f94caccb-8209-4954-b0e0-c89573db3924" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054949Z:c3092e08-1be2-424d-aa27-98dc0a3a2045" + "CENTRALUS:20151229T094050Z:f94caccb-8209-4954-b0e0-c89573db3924" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:49 GMT" + "Tue, 29 Dec 2015 09:40:50 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -325,25 +325,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "e1ae3502-027e-4e47-a0ca-95d62f3c41e8-2015-11-18 05:49:51Z-P" + "8fd1f684-7a20-497c-9279-38ba057215dc-2015-12-29 09:40:52Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -355,28 +355,28 @@ "no-cache" ], "x-ms-request-id": [ - "71343eb4-654f-417b-9234-f0cb5c71c7fa" + "72e00284-5bf0-4984-8bdf-f516068188f1" ], "x-ms-client-request-id": [ - "e1ae3502-027e-4e47-a0ca-95d62f3c41e8-2015-11-18 05:49:51Z-P" + "8fd1f684-7a20-497c-9279-38ba057215dc-2015-12-29 09:40:52Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14968" ], "x-ms-correlation-request-id": [ - "71343eb4-654f-417b-9234-f0cb5c71c7fa" + "72e00284-5bf0-4984-8bdf-f516068188f1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054952Z:71343eb4-654f-417b-9234-f0cb5c71c7fa" + "CENTRALUS:20151229T094053Z:72e00284-5bf0-4984-8bdf-f516068188f1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:51 GMT" + "Tue, 29 Dec 2015 09:40:52 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -385,25 +385,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "8f30de78-e2a7-4ffb-a15f-b2c9db555798-2015-11-18 05:49:52Z-P" + "10027a3b-35dd-483b-bce1-3828108bc83e-2015-12-29 09:40:54Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -415,28 +415,28 @@ "no-cache" ], "x-ms-request-id": [ - "ab3773b2-6a12-47e4-9d76-4caa3ef0c7ca" + "e6c36523-6697-466d-8f1d-ed454c94deb4" ], "x-ms-client-request-id": [ - "8f30de78-e2a7-4ffb-a15f-b2c9db555798-2015-11-18 05:49:52Z-P" + "10027a3b-35dd-483b-bce1-3828108bc83e-2015-12-29 09:40:54Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14966" ], "x-ms-correlation-request-id": [ - "ab3773b2-6a12-47e4-9d76-4caa3ef0c7ca" + "e6c36523-6697-466d-8f1d-ed454c94deb4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054953Z:ab3773b2-6a12-47e4-9d76-4caa3ef0c7ca" + "CENTRALUS:20151229T094055Z:e6c36523-6697-466d-8f1d-ed454c94deb4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:52 GMT" + "Tue, 29 Dec 2015 09:40:54 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -445,25 +445,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8706bb05-24ef-4f3d-a74b-54f2fe104fde-2015-11-18 05:49:48Z-P" + "7dcec3c7-a6c2-4e68-83f8-48d296c0be8c-2015-12-29 09:40:50Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.RecoveryServices/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.Storage/storageAccounts/sa5151\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "677" + "1389" ], "Content-Type": [ "application/json" @@ -475,7 +475,7 @@ "no-cache" ], "x-ms-request-id": [ - "8706bb05-24ef-4f3d-a74b-54f2fe104fde-2015-11-18 05:49:48Z-P 11/18/2015 5:49:51 AM" + "7dcec3c7-a6c2-4e68-83f8-48d296c0be8c-2015-12-29 09:40:50Z-P 12/29/2015 9:40:52 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -494,43 +494,40 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "8706bb05-24ef-4f3d-a74b-54f2fe104fde-2015-11-18 05:49:48Z-P" + "7dcec3c7-a6c2-4e68-83f8-48d296c0be8c-2015-12-29 09:40:50Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14966" ], "x-ms-correlation-request-id": [ - "05ecef28-9e2c-4b64-b4df-8db87e064463" + "b7cb3f6b-00ae-479e-b9c9-a016d33a43ac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054951Z:05ecef28-9e2c-4b64-b4df-8db87e064463" + "CENTRALUS:20151229T094052Z:b7cb3f6b-00ae-479e-b9c9-a016d33a43ac" ], "Date": [ - "Wed, 18 Nov 2015 05:49:50 GMT" + "Tue, 29 Dec 2015 09:40:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "Accept": [ - "application/Json" - ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1447822191684)\\/\",\"NotAfterTimestamp\":\"\\/Date(1448426991684)\\/\",\"ClientRequestId\":\"842087b6-5329-430e-ab8a-fc8707e84dad-2015-11-18 05:49:51Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WACyhAbYVqD+4RqbnbLqAcPF6KusjxBnbrHn953hDBA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"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\":{}}" ], "x-ms-client-request-id": [ - "842087b6-5329-430e-ab8a-fc8707e84dad-2015-11-18 05:49:51Z-P" + "4bc167c5-21b8-4930-b0e0-5c480fefd8d5-2015-12-29 09:40:53Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -548,34 +545,34 @@ "30" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/Jobs/bef7f6cd-0aa1-40ed-b128-66105b68df5d?api-version=2015-11-10" + "https://api-dogfood.resources.windows-int.net/Jobs/944c09c4-578c-4897-98bf-6ab2fd581b6b?api-version=2015-11-10" ], "x-ms-request-id": [ - "842087b6-5329-430e-ab8a-fc8707e84dad-2015-11-18 05:49:51Z-P 11/18/2015 5:49:53 AM" + "4bc167c5-21b8-4930-b0e0-5c480fefd8d5-2015-12-29 09:40:53Z-P 12/29/2015 9:40:54 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-client-request-id": [ - "842087b6-5329-430e-ab8a-fc8707e84dad-2015-11-18 05:49:51Z-P" + "4bc167c5-21b8-4930-b0e0-5c480fefd8d5-2015-12-29 09:40:53Z-P" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "f74c2040-f26f-4145-a8a3-4ad2a4a53788" + "aeb70132-583d-4b7a-98e1-cd67bc715fbd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054953Z:f74c2040-f26f-4145-a8a3-4ad2a4a53788" + "CENTRALUS:20151229T094054Z:aeb70132-583d-4b7a-98e1-cd67bc715fbd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:52 GMT" + "Tue, 29 Dec 2015 09:40:53 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure/operationresults/bef7f6cd-0aa1-40ed-b128-66105b68df5d?api-version=2015-11-10" + "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" ], "X-Powered-By": [ "ASP.NET" @@ -584,25 +581,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationJobs/bef7f6cd-0aa1-40ed-b128-66105b68df5d?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkpvYnMvYmVmN2Y2Y2QtMGFhMS00MGVkLWIxMjgtNjYxMDViNjhkZjVkP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "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=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d883c02c-2264-492f-ae36-fcc8c7f1b35a-2015-11-18 05:49:53Z-P" + "4eb9028d-a349-459d-b7c8-3b5637605e96-2015-12-29 09:40:55Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationJobs/bef7f6cd-0aa1-40ed-b128-66105b68df5d\",\r\n \"name\": \"bef7f6cd-0aa1-40ed-b128-66105b68df5d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"842087b6-5329-430e-ab8a-fc8707e84dad-2015-11-18 05:49:51Z-P\",\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 },\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 }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2015-11-18T05:49:53.1182559Z\",\r\n \"allowedActions\": [\r\n \"Cancel\",\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"469aa0c1-8efb-4afd-b747-1286fc23d7cf\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"targetObjectName\": \"ppAzure\"\r\n }\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "1275" + "1651" ], "Content-Type": [ "application/json" @@ -614,7 +611,7 @@ "no-cache" ], "x-ms-request-id": [ - "d883c02c-2264-492f-ae36-fcc8c7f1b35a-2015-11-18 05:49:53Z-P 11/18/2015 5:49:54 AM" + "4eb9028d-a349-459d-b7c8-3b5637605e96-2015-12-29 09:40:55Z-P 12/29/2015 9:40:55 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,19 +630,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "d883c02c-2264-492f-ae36-fcc8c7f1b35a-2015-11-18 05:49:53Z-P" + "4eb9028d-a349-459d-b7c8-3b5637605e96-2015-12-29 09:40:55Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14965" ], "x-ms-correlation-request-id": [ - "d737fbaf-7b70-4559-9aa6-82ff70fce8b9" + "a12562eb-2ce2-40ca-8877-0a2572f64ff2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054954Z:d737fbaf-7b70-4559-9aa6-82ff70fce8b9" + "CENTRALUS:20151229T094055Z:a12562eb-2ce2-40ca-8877-0a2572f64ff2" ], "Date": [ - "Wed, 18 Nov 2015 05:49:54 GMT" + "Tue, 29 Dec 2015 09:40:55 GMT" ] }, "StatusCode": 200 @@ -653,6 +650,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "00a07ea0-ad8b-491c-9de8-77bf10881499" + "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" } } \ 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 ba9025164694..eb63954171b9 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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10,13 +10,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14993" ], "x-ms-request-id": [ - "0362a31d-05c8-406b-818e-fe6422a0d5d1" + "09fe7b5b-a315-4b17-93a5-be7b7e1a6e12" ], "x-ms-correlation-request-id": [ - "0362a31d-05c8-406b-818e-fe6422a0d5d1" + "09fe7b5b-a315-4b17-93a5-be7b7e1a6e12" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054849Z:0362a31d-05c8-406b-818e-fe6422a0d5d1" + "CENTRALUS:20151229T093913Z:09fe7b5b-a315-4b17-93a5-be7b7e1a6e12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:49 GMT" + "Tue, 29 Dec 2015 09:39:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -61,13 +61,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,16 +79,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14991" ], "x-ms-request-id": [ - "472549a8-826c-4f07-b8a5-2a92d34fdaba" + "d2650c8b-d901-431c-a15a-6063d0f28316" ], "x-ms-correlation-request-id": [ - "472549a8-826c-4f07-b8a5-2a92d34fdaba" + "d2650c8b-d901-431c-a15a-6063d0f28316" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054851Z:472549a8-826c-4f07-b8a5-2a92d34fdaba" + "CENTRALUS:20151229T093915Z:d2650c8b-d901-431c-a15a-6063d0f28316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -97,14 +97,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:50 GMT" + "Tue, 29 Dec 2015 09:39:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -112,13 +112,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14989" ], "x-ms-request-id": [ - "7661308b-4e11-4023-9e9a-593537ed0aef" + "9e48ecdf-ad65-42c4-9b45-dc891de68511" ], "x-ms-correlation-request-id": [ - "7661308b-4e11-4023-9e9a-593537ed0aef" + "9e48ecdf-ad65-42c4-9b45-dc891de68511" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054853Z:7661308b-4e11-4023-9e9a-593537ed0aef" + "CENTRALUS:20151229T093918Z:9e48ecdf-ad65-42c4-9b45-dc891de68511" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,14 +148,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:52 GMT" + "Tue, 29 Dec 2015 09:39:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -163,13 +163,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -181,16 +181,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14987" ], "x-ms-request-id": [ - "44df87ff-2d2e-441d-927f-70bb83433c93" + "3c377902-8a6a-4f92-8b37-e83a2ea33ffb" ], "x-ms-correlation-request-id": [ - "44df87ff-2d2e-441d-927f-70bb83433c93" + "3c377902-8a6a-4f92-8b37-e83a2ea33ffb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054855Z:44df87ff-2d2e-441d-927f-70bb83433c93" + "CENTRALUS:20151229T093920Z:3c377902-8a6a-4f92-8b37-e83a2ea33ffb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,14 +199,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:55 GMT" + "Tue, 29 Dec 2015 09:39:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -214,13 +214,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,16 +232,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14985" ], "x-ms-request-id": [ - "b5fb07d9-fc8b-4dce-b3a0-f2c882c729c4" + "cdd1b93a-f170-4914-816c-88ee0223aeff" ], "x-ms-correlation-request-id": [ - "b5fb07d9-fc8b-4dce-b3a0-f2c882c729c4" + "cdd1b93a-f170-4914-816c-88ee0223aeff" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054857Z:b5fb07d9-fc8b-4dce-b3a0-f2c882c729c4" + "CENTRALUS:20151229T093921Z:cdd1b93a-f170-4914-816c-88ee0223aeff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,14 +250,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:57 GMT" + "Tue, 29 Dec 2015 09:39:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -265,13 +265,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,16 +283,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14983" ], "x-ms-request-id": [ - "25190e11-a982-4c72-b6a7-e62c1c2edd27" + "aee29ac3-e2ba-4468-8820-6994edec2115" ], "x-ms-correlation-request-id": [ - "25190e11-a982-4c72-b6a7-e62c1c2edd27" + "aee29ac3-e2ba-4468-8820-6994edec2115" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054859Z:25190e11-a982-4c72-b6a7-e62c1c2edd27" + "CENTRALUS:20151229T093924Z:aee29ac3-e2ba-4468-8820-6994edec2115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -301,14 +301,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:58 GMT" + "Tue, 29 Dec 2015 09:39:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,13 +316,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14981" ], "x-ms-request-id": [ - "0cb9520a-52be-478c-a0c3-87f0e923edc3" + "8c841804-3571-4f27-a6a3-4d46a018dd5b" ], "x-ms-correlation-request-id": [ - "0cb9520a-52be-478c-a0c3-87f0e923edc3" + "8c841804-3571-4f27-a6a3-4d46a018dd5b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054900Z:0cb9520a-52be-478c-a0c3-87f0e923edc3" + "CENTRALUS:20151229T093925Z:8c841804-3571-4f27-a6a3-4d46a018dd5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,14 +352,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:59 GMT" + "Tue, 29 Dec 2015 09:39:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -367,13 +367,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,16 +385,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14979" ], "x-ms-request-id": [ - "d9b48bec-3daf-40fb-ba3c-e7de7e02b742" + "da165dbc-5cea-4b19-b84b-4dc89ec17aa8" ], "x-ms-correlation-request-id": [ - "d9b48bec-3daf-40fb-ba3c-e7de7e02b742" + "da165dbc-5cea-4b19-b84b-4dc89ec17aa8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054902Z:d9b48bec-3daf-40fb-ba3c-e7de7e02b742" + "CENTRALUS:20151229T093927Z:da165dbc-5cea-4b19-b84b-4dc89ec17aa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,14 +403,14 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:02 GMT" + "Tue, 29 Dec 2015 09:39:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -418,13 +418,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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": [ - "1289" + "4491" ], "Content-Type": [ "application/json; charset=utf-8" @@ -436,16 +436,67 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14977" + ], + "x-ms-request-id": [ + "ab58e8b7-eb94-411e-ad55-39ae81446883" + ], + "x-ms-correlation-request-id": [ + "ab58e8b7-eb94-411e-ad55-39ae81446883" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T093929Z:ab58e8b7-eb94-411e-ad55-39ae81446883" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:39:29 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": [ + "14975" ], "x-ms-request-id": [ - "ecea3e92-aa31-4a7b-a89b-b897ace5ccab" + "23516e8b-4450-4e36-9980-5b872b49c49f" ], "x-ms-correlation-request-id": [ - "ecea3e92-aa31-4a7b-a89b-b897ace5ccab" + "23516e8b-4450-4e36-9980-5b872b49c49f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054905Z:ecea3e92-aa31-4a7b-a89b-b897ace5ccab" + "CENTRALUS:20151229T093931Z:23516e8b-4450-4e36-9980-5b872b49c49f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -454,31 +505,31 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:04 GMT" + "Tue, 29 Dec 2015 09:39:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "0edd3cf8-82a9-4237-8651-839334336eb3-2015-11-18 05:48:49Z-P" + "54556618-969e-4f7f-b34e-10aed125208b-2015-12-29 09:39:13Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -490,28 +541,28 @@ "no-cache" ], "x-ms-request-id": [ - "8f618d4f-4fea-4c13-a8c5-994b836adb91" + "185f6f50-009b-4df0-b14f-a92507ecece2" ], "x-ms-client-request-id": [ - "0edd3cf8-82a9-4237-8651-839334336eb3-2015-11-18 05:48:49Z-P" + "54556618-969e-4f7f-b34e-10aed125208b-2015-12-29 09:39:13Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14992" ], "x-ms-correlation-request-id": [ - "8f618d4f-4fea-4c13-a8c5-994b836adb91" + "185f6f50-009b-4df0-b14f-a92507ecece2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054850Z:8f618d4f-4fea-4c13-a8c5-994b836adb91" + "CENTRALUS:20151229T093915Z:185f6f50-009b-4df0-b14f-a92507ecece2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:50 GMT" + "Tue, 29 Dec 2015 09:39:14 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -520,25 +571,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "e820f714-41c4-42ba-bf5b-1a7ca3c862c9-2015-11-18 05:48:50Z-P" + "99c73c32-099e-42a2-9322-c3a541dbf7ba-2015-12-29 09:39:15Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -550,28 +601,28 @@ "no-cache" ], "x-ms-request-id": [ - "dcaf2e09-a260-40b0-8539-2cde26362839" + "5173e080-083c-411c-9391-0cabea325c99" ], "x-ms-client-request-id": [ - "e820f714-41c4-42ba-bf5b-1a7ca3c862c9-2015-11-18 05:48:50Z-P" + "99c73c32-099e-42a2-9322-c3a541dbf7ba-2015-12-29 09:39:15Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14990" ], "x-ms-correlation-request-id": [ - "dcaf2e09-a260-40b0-8539-2cde26362839" + "5173e080-083c-411c-9391-0cabea325c99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054851Z:dcaf2e09-a260-40b0-8539-2cde26362839" + "CENTRALUS:20151229T093916Z:5173e080-083c-411c-9391-0cabea325c99" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:50 GMT" + "Tue, 29 Dec 2015 09:39:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -580,25 +631,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "5b8e80b6-b3ed-4c88-98f5-c6628132d063-2015-11-18 05:48:53Z-P" + "fe43ac2c-a5d4-4395-9ad0-914518fbb5f2-2015-12-29 09:39:18Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -610,28 +661,28 @@ "no-cache" ], "x-ms-request-id": [ - "2af226cc-6733-4d89-8d37-bd6988ffff6c" + "18818687-5955-4b41-8750-fa0153b492f5" ], "x-ms-client-request-id": [ - "5b8e80b6-b3ed-4c88-98f5-c6628132d063-2015-11-18 05:48:53Z-P" + "fe43ac2c-a5d4-4395-9ad0-914518fbb5f2-2015-12-29 09:39:18Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14988" ], "x-ms-correlation-request-id": [ - "2af226cc-6733-4d89-8d37-bd6988ffff6c" + "18818687-5955-4b41-8750-fa0153b492f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054854Z:2af226cc-6733-4d89-8d37-bd6988ffff6c" + "CENTRALUS:20151229T093919Z:18818687-5955-4b41-8750-fa0153b492f5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:54 GMT" + "Tue, 29 Dec 2015 09:39:18 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -640,25 +691,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "ebb3caae-10c1-4496-8129-aa4feadfc4a1-2015-11-18 05:48:55Z-P" + "2413972f-af17-4e2a-b721-2f8a9a5a1fc9-2015-12-29 09:39:19Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -670,28 +721,28 @@ "no-cache" ], "x-ms-request-id": [ - "bd15dcf9-0e5e-45a8-bd8a-4c41e1497a4e" + "f9dc7dc6-5b95-4f1c-9c24-43ec3cc49ad6" ], "x-ms-client-request-id": [ - "ebb3caae-10c1-4496-8129-aa4feadfc4a1-2015-11-18 05:48:55Z-P" + "2413972f-af17-4e2a-b721-2f8a9a5a1fc9-2015-12-29 09:39:19Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14986" ], "x-ms-correlation-request-id": [ - "bd15dcf9-0e5e-45a8-bd8a-4c41e1497a4e" + "f9dc7dc6-5b95-4f1c-9c24-43ec3cc49ad6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054855Z:bd15dcf9-0e5e-45a8-bd8a-4c41e1497a4e" + "CENTRALUS:20151229T093920Z:f9dc7dc6-5b95-4f1c-9c24-43ec3cc49ad6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:55 GMT" + "Tue, 29 Dec 2015 09:39:19 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -700,25 +751,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "36a5a249-2bb6-4bf0-b6e6-9adda186bf79-2015-11-18 05:48:57Z-P" + "69a44c33-39de-462f-9e5e-2cd1a202c658-2015-12-29 09:39:21Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -730,28 +781,28 @@ "no-cache" ], "x-ms-request-id": [ - "f313cfad-85a6-41f7-8f7f-2050e45a8552" + "7a419c67-71cf-481e-ac23-daff8c464108" ], "x-ms-client-request-id": [ - "36a5a249-2bb6-4bf0-b6e6-9adda186bf79-2015-11-18 05:48:57Z-P" + "69a44c33-39de-462f-9e5e-2cd1a202c658-2015-12-29 09:39:21Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14984" ], "x-ms-correlation-request-id": [ - "f313cfad-85a6-41f7-8f7f-2050e45a8552" + "7a419c67-71cf-481e-ac23-daff8c464108" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054858Z:f313cfad-85a6-41f7-8f7f-2050e45a8552" + "CENTRALUS:20151229T093922Z:7a419c67-71cf-481e-ac23-daff8c464108" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:57 GMT" + "Tue, 29 Dec 2015 09:39:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -760,25 +811,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "6d46908e-7542-41ac-9c0d-034e8d7b414c-2015-11-18 05:48:58Z-P" + "a003ef3c-7329-4ab5-9a6c-a8334a1fa0b7-2015-12-29 09:39:23Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -790,28 +841,28 @@ "no-cache" ], "x-ms-request-id": [ - "82eb87dd-ce60-4a52-8ed7-9ff1129c9121" + "54655128-30c2-4ee0-8a58-f4bd5e83dbad" ], "x-ms-client-request-id": [ - "6d46908e-7542-41ac-9c0d-034e8d7b414c-2015-11-18 05:48:58Z-P" + "a003ef3c-7329-4ab5-9a6c-a8334a1fa0b7-2015-12-29 09:39:23Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14982" ], "x-ms-correlation-request-id": [ - "82eb87dd-ce60-4a52-8ed7-9ff1129c9121" + "54655128-30c2-4ee0-8a58-f4bd5e83dbad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054859Z:82eb87dd-ce60-4a52-8ed7-9ff1129c9121" + "CENTRALUS:20151229T093924Z:54655128-30c2-4ee0-8a58-f4bd5e83dbad" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:48:59 GMT" + "Tue, 29 Dec 2015 09:39:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -820,25 +871,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "bfaa3560-74a2-4bd3-ae53-50830c2bf712-2015-11-18 05:49:00Z-P" + "805f37f1-6117-44b9-8402-33d02d160169-2015-12-29 09:39:25Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -850,28 +901,28 @@ "no-cache" ], "x-ms-request-id": [ - "2e97c855-57f8-42cf-a7b4-22a303b7f8cb" + "e4e1a5b1-4b6e-4781-9465-9dd941ef6150" ], "x-ms-client-request-id": [ - "bfaa3560-74a2-4bd3-ae53-50830c2bf712-2015-11-18 05:49:00Z-P" + "805f37f1-6117-44b9-8402-33d02d160169-2015-12-29 09:39:25Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14980" ], "x-ms-correlation-request-id": [ - "2e97c855-57f8-42cf-a7b4-22a303b7f8cb" + "e4e1a5b1-4b6e-4781-9465-9dd941ef6150" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054901Z:2e97c855-57f8-42cf-a7b4-22a303b7f8cb" + "CENTRALUS:20151229T093926Z:e4e1a5b1-4b6e-4781-9465-9dd941ef6150" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:00 GMT" + "Tue, 29 Dec 2015 09:39:25 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -880,25 +931,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "ea98a905-6db1-4ba7-ab42-78da43421d61-2015-11-18 05:49:01Z-P" + "81c80d85-2b3c-4dbc-9b06-c09d3c501552-2015-12-29 09:39:27Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -910,28 +961,88 @@ "no-cache" ], "x-ms-request-id": [ - "10174204-e939-4957-b5d0-c3b0764227a8" + "43f2023b-c0a1-4aaa-ae3a-1f27c33b7813" ], "x-ms-client-request-id": [ - "ea98a905-6db1-4ba7-ab42-78da43421d61-2015-11-18 05:49:01Z-P" + "81c80d85-2b3c-4dbc-9b06-c09d3c501552-2015-12-29 09:39:27Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14978" + ], + "x-ms-correlation-request-id": [ + "43f2023b-c0a1-4aaa-ae3a-1f27c33b7813" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T093928Z:43f2023b-c0a1-4aaa-ae3a-1f27c33b7813" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:39: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": [ + "2464785a-df28-42c9-bab0-61195ce2ea61-2015-12-29 09:39: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 {\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": [ + "ad81c0cf-b139-4a56-9ab2-aa74853e97aa" + ], + "x-ms-client-request-id": [ + "2464785a-df28-42c9-bab0-61195ce2ea61-2015-12-29 09:39:28Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" ], "x-ms-correlation-request-id": [ - "10174204-e939-4957-b5d0-c3b0764227a8" + "ad81c0cf-b139-4a56-9ab2-aa74853e97aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054902Z:10174204-e939-4957-b5d0-c3b0764227a8" + "CENTRALUS:20151229T093929Z:ad81c0cf-b139-4a56-9ab2-aa74853e97aa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:02 GMT" + "Tue, 29 Dec 2015 09:39:29 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -940,25 +1051,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "8249d8cf-0d82-4894-9f87-02404e45315d-2015-11-18 05:49:04Z-P" + "95c5c15b-756c-4c7f-89bf-358be1f17ee0-2015-12-29 09:39:31Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "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": [ - "821" + "5844" ], "Content-Type": [ "application/json" @@ -970,28 +1081,28 @@ "no-cache" ], "x-ms-request-id": [ - "e05c223b-8e31-40de-9c7a-c4aada04b6ec" + "a2c3242b-3b30-4320-9665-f0005ba1bd08" ], "x-ms-client-request-id": [ - "8249d8cf-0d82-4894-9f87-02404e45315d-2015-11-18 05:49:04Z-P" + "95c5c15b-756c-4c7f-89bf-358be1f17ee0-2015-12-29 09:39:31Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14974" ], "x-ms-correlation-request-id": [ - "e05c223b-8e31-40de-9c7a-c4aada04b6ec" + "a2c3242b-3b30-4320-9665-f0005ba1bd08" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054905Z:e05c223b-8e31-40de-9c7a-c4aada04b6ec" + "CENTRALUS:20151229T093932Z:a2c3242b-3b30-4320-9665-f0005ba1bd08" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:05 GMT" + "Tue, 29 Dec 2015 09:39:31 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1000,25 +1111,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3M/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "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": [ - "03021ab7-00d7-497e-8bea-f4fda469e24b-2015-11-18 05:48:51Z-P" + "c63a4586-70a4-44e7-a20a-3d36e9afeeee-2015-12-29 09:39:16Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5\",\r\n \"properties\": {\r\n \"friendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": \"1E2FACEB11F6AFAEE55459CED4F1442E0E56D9BA\",\r\n \"kekCertExpiryDate\": \"2018-11-12T19:37:42Z\"\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"Enabled\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"57f95c35-6c83-42ce-bb21-2c4f10f92d8e\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMM\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "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": [ - "783" + "580" ], "Content-Type": [ "application/json" @@ -1030,7 +1141,7 @@ "no-cache" ], "x-ms-request-id": [ - "03021ab7-00d7-497e-8bea-f4fda469e24b-2015-11-18 05:48:51Z-P 11/18/2015 5:48:53 AM" + "c63a4586-70a4-44e7-a20a-3d36e9afeeee-2015-12-29 09:39:16Z-P 12/29/2015 9:39:17 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1049,43 +1160,110 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "03021ab7-00d7-497e-8bea-f4fda469e24b-2015-11-18 05:48:51Z-P" + "c63a4586-70a4-44e7-a20a-3d36e9afeeee-2015-12-29 09:39:16Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14974" ], "x-ms-correlation-request-id": [ - "df38b93d-9c8b-4bce-ae81-f0c9439f8cb7" + "c00694a5-9cc7-4a47-afee-0544e02067db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054853Z:df38b93d-9c8b-4bce-ae81-f0c9439f8cb7" + "CENTRALUS:20151229T093918Z:c00694a5-9cc7-4a47-afee-0544e02067db" ], "Date": [ - "Wed, 18 Nov 2015 05:48:52 GMT" + "Tue, 29 Dec 2015 09:39:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationFabrics/B2asite1/replicationProtectionContainers?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvbkZhYnJpY3MvQjJhc2l0ZTEvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b2c621f-37af-4884-ac4b-eeecee4dc9b9-2015-11-18 05:48:54Z-P" + "2ba2918c-2852-4377-be0d-20433c9595c8-2015-12-29 09:39:18Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/05aa0992-6033-44f6-86cb-5e20bb05aee6\",\r\n \"name\": \"05aa0992-6033-44f6-86cb-5e20bb05aee6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"cloud\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3\",\r\n \"name\": \"19996177-88ca-4aa8-8fe6-8ae9198c06d3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"cloud9\",\r\n \"fabricType\": \"VMM\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"PairingInProgress\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/38e252d5-6243-472d-91d0-76874ee5f5f1\",\r\n \"name\": \"38e252d5-6243-472d-91d0-76874ee5f5f1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"signoff102e2acloud\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/42432614-e000-4cb9-8827-a49ea1d0d3cc\",\r\n \"name\": \"42432614-e000-4cb9-8827-a49ea1d0d3cc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"d2\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/7c3641bb-d572-4d56-80da-498440f924e7\",\r\n \"name\": \"7c3641bb-d572-4d56-80da-498440f924e7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"d1\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/b007f06c-646c-4978-a7bd-2a3d1a13110e\",\r\n \"name\": \"b007f06c-646c-4978-a7bd-2a3d1a13110e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"alokSec\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/de58c031-820e-4e1a-9505-763523bb69c5\",\r\n \"name\": \"de58c031-820e-4e1a-9505-763523bb69c5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"alokPri\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/f0982c81-dfb1-4bfa-ba0d-a7d941f6e8c7\",\r\n \"name\": \"f0982c81-dfb1-4bfa-ba0d-a7d941f6e8c7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"azurecloud\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/ff10d996-9083-4aee-b99d-7f7f44c81118\",\r\n \"name\": \"ff10d996-9083-4aee-b99d-7f7f44c81118\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"sriramvu-hv2.fareast.corp.microsoft.com\",\r\n \"friendlyName\": \"rec\",\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}", + "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}", "ResponseHeaders": { "Content-Length": [ - "5844" + "629" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "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" + ], + "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": [ + "2ba2918c-2852-4377-be0d-20433c9595c8-2015-12-29 09:39:18Z-P" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "5e1f22ef-afc1-4371-8478-56c56411ea09" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T093919Z:5e1f22ef-afc1-4371-8478-56c56411ea09" + ], + "Date": [ + "Tue, 29 Dec 2015 09:39:18 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==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb01455f-f4e9-4f02-97ff-7c6d9c35d90f-2015-12-29 09:39:20Z-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/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}", + "ResponseHeaders": { + "Content-Length": [ + "2255" ], "Content-Type": [ "application/json" @@ -1097,7 +1275,7 @@ "no-cache" ], "x-ms-request-id": [ - "3b2c621f-37af-4884-ac4b-eeecee4dc9b9-2015-11-18 05:48:54Z-P 11/18/2015 5:48:54 AM" + "cb01455f-f4e9-4f02-97ff-7c6d9c35d90f-2015-12-29 09:39:20Z-P 12/29/2015 9:39:21 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,43 +1294,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "3b2c621f-37af-4884-ac4b-eeecee4dc9b9-2015-11-18 05:48:54Z-P" + "cb01455f-f4e9-4f02-97ff-7c6d9c35d90f-2015-12-29 09:39:20Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14972" ], "x-ms-correlation-request-id": [ - "cdfc5994-bf47-437e-92f6-596edb9e8efe" + "e3e715ea-6888-458c-b5a9-431f52065e0a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054855Z:cdfc5994-bf47-437e-92f6-596edb9e8efe" + "CENTRALUS:20151229T093921Z:e3e715ea-6888-458c-b5a9-431f52065e0a" ], "Date": [ - "Wed, 18 Nov 2015 05:48:54 GMT" + "Tue, 29 Dec 2015 09:39:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzLzE5OTk2MTc3LTg4Y2EtNGFhOC04ZmU2LThhZTkxOThjMDZkMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "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==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fd3139b-dd19-4e84-ab85-d5392b856c7f-2015-11-18 05:48:55Z-P" + "206c9ba4-4401-49ab-8766-8252c2b572e2-2015-12-29 09:39:27Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3/replicationProtectionContainerMappings/ContainerMapping_028aa8c6-2d50-41bb-9cdb-00eb3f02b6f2\",\r\n \"name\": \"ContainerMapping_028aa8c6-2d50-41bb-9cdb-00eb3f02b6f2\",\r\n \"type\": \"Microsoft.RecoveryServices/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure\",\r\n \"state\": \"PairingInProgress\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "1003" + "2255" ], "Content-Type": [ "application/json" @@ -1164,7 +1342,7 @@ "no-cache" ], "x-ms-request-id": [ - "9fd3139b-dd19-4e84-ab85-d5392b856c7f-2015-11-18 05:48:55Z-P 11/18/2015 5:48:56 AM" + "206c9ba4-4401-49ab-8766-8252c2b572e2-2015-12-29 09:39:27Z-P 12/29/2015 9:39:28 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1183,43 +1361,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "9fd3139b-dd19-4e84-ab85-d5392b856c7f-2015-11-18 05:48:55Z-P" + "206c9ba4-4401-49ab-8766-8252c2b572e2-2015-12-29 09:39:27Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14968" ], "x-ms-correlation-request-id": [ - "9c800fbf-1736-4191-9658-7f490ea607e1" + "e6a3d395-74a4-47a6-82e6-20da67babe72" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054857Z:9c800fbf-1736-4191-9658-7f490ea607e1" + "CENTRALUS:20151229T093928Z:e6a3d395-74a4-47a6-82e6-20da67babe72" ], "Date": [ - "Wed, 18 Nov 2015 05:48:57 GMT" + "Tue, 29 Dec 2015 09:39:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3/replicationProtectionContainerMappings?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzLzE5OTk2MTc3LTg4Y2EtNGFhOC04ZmU2LThhZTkxOThjMDZkMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTExLTEw", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/ppAzure?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "414dea5a-b526-4f25-9ba0-8125f06fd028-2015-11-18 05:49:00Z-P" + "584c8519-99d3-4883-a427-205cfc150c50-2015-12-29 09:39:22Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3/replicationProtectionContainerMappings/ContainerMapping_028aa8c6-2d50-41bb-9cdb-00eb3f02b6f2\",\r\n \"name\": \"ContainerMapping_028aa8c6-2d50-41bb-9cdb-00eb3f02b6f2\",\r\n \"type\": \"Microsoft.RecoveryServices/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure\",\r\n \"state\": \"PairingInProgress\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "1003" + "697" ], "Content-Type": [ "application/json" @@ -1231,7 +1409,7 @@ "no-cache" ], "x-ms-request-id": [ - "414dea5a-b526-4f25-9ba0-8125f06fd028-2015-11-18 05:49:00Z-P 11/18/2015 5:49:01 AM" + "584c8519-99d3-4883-a427-205cfc150c50-2015-12-29 09:39:22Z-P 12/29/2015 9:39:23 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1250,43 +1428,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "414dea5a-b526-4f25-9ba0-8125f06fd028-2015-11-18 05:49:00Z-P" + "584c8519-99d3-4883-a427-205cfc150c50-2015-12-29 09:39:22Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14971" ], "x-ms-correlation-request-id": [ - "9c5d2cf9-b722-4db5-98d5-015044e280f6" + "0125725d-e33b-4fea-96d7-e4253413b1ac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054901Z:9c5d2cf9-b722-4db5-98d5-015044e280f6" + "CENTRALUS:20151229T093923Z:0125725d-e33b-4fea-96d7-e4253413b1ac" ], "Date": [ - "Wed, 18 Nov 2015 05:49:01 GMT" + "Tue, 29 Dec 2015 09:39:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvblBvbGljaWVzL3BwQXp1cmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies/pptest?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzL3BwdGVzdD9hcGktdmVyc2lvbj0yMDE1LTExLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7af4183-3318-40a0-917b-9974b68fd720-2015-11-18 05:48:57Z-P" + "efce3fcb-2353-40e3-a434-117c29552a4c-2015-12-29 09:39:24Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.RecoveryServices/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.Storage/storageAccounts/sa5151\"\r\n }\r\n }\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "649" + "663" ], "Content-Type": [ "application/json" @@ -1298,7 +1476,7 @@ "no-cache" ], "x-ms-request-id": [ - "b7af4183-3318-40a0-917b-9974b68fd720-2015-11-18 05:48:57Z-P 11/18/2015 5:48:58 AM" + "efce3fcb-2353-40e3-a434-117c29552a4c-2015-12-29 09:39:24Z-P 12/29/2015 9:39:24 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,43 +1495,43 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "b7af4183-3318-40a0-917b-9974b68fd720-2015-11-18 05:48:57Z-P" + "efce3fcb-2353-40e3-a434-117c29552a4c-2015-12-29 09:39:24Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14970" ], "x-ms-correlation-request-id": [ - "35746837-ff4b-48c2-a620-e0c861afe3cf" + "1b2b1ea3-3c11-419d-8194-992020c52cf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054858Z:35746837-ff4b-48c2-a620-e0c861afe3cf" + "CENTRALUS:20151229T093925Z:1b2b1ea3-3c11-419d-8194-992020c52cf0" ], "Date": [ - "Wed, 18 Nov 2015 05:48:58 GMT" + "Tue, 29 Dec 2015 09:39:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "RequestUri": "/Subscriptions/3cf8bef3-d6e2-47fd-8ef9-a305d11c4255/resourceGroups/siterecoveryppecsmrg6/providers/Microsoft.RecoveryServicesBVTD2/vaults/nvault1/replicationPolicies?api-version=2015-11-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvM2NmOGJlZjMtZDZlMi00N2ZkLThlZjktYTMwNWQxMWM0MjU1L3Jlc291cmNlR3JvdXBzL3NpdGVyZWNvdmVyeXBwZWNzbXJnNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHMvbnZhdWx0MS9yZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3b6ccf1-e4b1-44b8-825e-cfa37c2ebb57-2015-11-18 05:48:59Z-P" + "2546865d-0be7-48b9-9e68-6c06788df28d-2015-12-29 09:39:26Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationPolicies/ppAzure\",\r\n \"name\": \"ppAzure\",\r\n \"type\": \"Microsoft.RecoveryServices/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.Storage/storageAccounts/sa5151\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "677" + "1389" ], "Content-Type": [ "application/json" @@ -1365,7 +1543,7 @@ "no-cache" ], "x-ms-request-id": [ - "d3b6ccf1-e4b1-44b8-825e-cfa37c2ebb57-2015-11-18 05:48:59Z-P 11/18/2015 5:48:59 AM" + "2546865d-0be7-48b9-9e68-6c06788df28d-2015-12-29 09:39:26Z-P 12/29/2015 9:39:26 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1384,46 +1562,46 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "d3b6ccf1-e4b1-44b8-825e-cfa37c2ebb57-2015-11-18 05:48:59Z-P" + "2546865d-0be7-48b9-9e68-6c06788df28d-2015-12-29 09:39:26Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14969" ], "x-ms-correlation-request-id": [ - "895cb3ae-a2de-4925-8928-f01595768bdf" + "5c0afa30-375b-440a-9500-b779532d64c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054900Z:895cb3ae-a2de-4925-8928-f01595768bdf" + "CENTRALUS:20151229T093927Z:5c0afa30-375b-440a-9500-b779532d64c7" ], "Date": [ - "Wed, 18 Nov 2015 05:48:59 GMT" + "Tue, 29 Dec 2015 09:39:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3/replicationProtectionContainerMappings/ContainerMapping_028aa8c6-2d50-41bb-9cdb-00eb3f02b6f2/remove?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkZhYnJpY3MvMTU2ZjNmZDUxNGM2MzJkY2U2MTJkMzhhMTg3Y2E0MzI4MTA2MTMyMzI4MGE0ZTQyZjhlNDc0MmQ4ZTJkY2FlNS9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzLzE5OTk2MTc3LTg4Y2EtNGFhOC04ZmU2LThhZTkxOThjMDZkMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncy9Db250YWluZXJNYXBwaW5nXzAyOGFhOGM2LTJkNTAtNDFiYi05Y2RiLTAwZWIzZjAyYjZmMi9yZW1vdmU/YXBpLXZlcnNpb249MjAxNS0xMS0xMA==", + "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=", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {}\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Content-Length": [ "61" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1447822142281)\\/\",\"NotAfterTimestamp\":\"\\/Date(1448426942281)\\/\",\"ClientRequestId\":\"9760aab1-636d-41a6-8f75-d856cbd63e20-2015-11-18 05:49:02Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"g5kRVjweSMgF4mlIxKtZElKX5cqwAIp7LpjassUwSJU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"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\":{}}" ], "x-ms-client-request-id": [ - "9760aab1-636d-41a6-8f75-d856cbd63e20-2015-11-18 05:49:02Z-P" + "ae09f89b-6429-4826-98db-4d5b3a664e62-2015-12-29 09:39:29Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -1441,34 +1619,34 @@ "30" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/Jobs/b6b96824-9d53-4129-836c-7a42e84c8fe2?api-version=2015-11-10" + "https://api-dogfood.resources.windows-int.net/Jobs/136e913b-84aa-4856-bf4e-93ab1574c1d7?api-version=2015-11-10" ], "x-ms-request-id": [ - "9760aab1-636d-41a6-8f75-d856cbd63e20-2015-11-18 05:49:02Z-P 11/18/2015 5:49:04 AM" + "ae09f89b-6429-4826-98db-4d5b3a664e62-2015-12-29 09:39:29Z-P 12/29/2015 9:39:30 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-client-request-id": [ - "9760aab1-636d-41a6-8f75-d856cbd63e20-2015-11-18 05:49:02Z-P" + "ae09f89b-6429-4826-98db-4d5b3a664e62-2015-12-29 09:39:29Z-P" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "6160ce3d-c74a-4ed9-83db-50f1d1399c64" + "e14be870-dd8e-4d71-a46b-b2d6b3c5f0aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054904Z:6160ce3d-c74a-4ed9-83db-50f1d1399c64" + "CENTRALUS:20151229T093931Z:e14be870-dd8e-4d71-a46b-b2d6b3c5f0aa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:49:04 GMT" + "Tue, 29 Dec 2015 09:39:31 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationFabrics/156f3fd514c632dce612d38a187ca43281061323280a4e42f8e4742d8e2dcae5/replicationProtectionContainers/19996177-88ca-4aa8-8fe6-8ae9198c06d3/replicationProtectionContainerMappings/ContainerMapping_028aa8c6-2d50-41bb-9cdb-00eb3f02b6f2/operationresults/b6b96824-9d53-4129-836c-7a42e84c8fe2?api-version=2015-11-10" + "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" ], "X-Powered-By": [ "ASP.NET" @@ -1477,25 +1655,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationJobs/b6b96824-9d53-4129-836c-7a42e84c8fe2?api-version=2015-11-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9oZWxsby9yZXBsaWNhdGlvbkpvYnMvYjZiOTY4MjQtOWQ1My00MTI5LTgzNmMtN2E0MmU4NGM4ZmUyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMTA=", + "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=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2bec611-f99c-4fa6-a0fd-5d650493cc6f-2015-11-18 05:49:05Z-P" + "3a71dc18-26a0-4271-942b-d3b9f961f5d4-2015-12-29 09:39:31Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/5.0.0.0" + "Microsoft.Azure.Management.SiteRecovery.SiteRecoveryManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello/replicationJobs/b6b96824-9d53-4129-836c-7a42e84c8fe2\",\r\n \"name\": \"b6b96824-9d53-4129-836c-7a42e84c8fe2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9760aab1-636d-41a6-8f75-d856cbd63e20-2015-11-18 05:49:02Z-P\",\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\": \"32173f50-1f4e-4ece-893c-8f3412ea4788\",\r\n \"name\": \"CloudUnpairingPrerequisitesCheck\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for deleting the protection group\",\r\n \"state\": \"NotStarted\"\r\n },\r\n {\r\n \"taskId\": \"a163d060-98c4-4d1e-b2b3-0f7c772f405d\",\r\n \"name\": \"CloudUnpairingUnpairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Remove the protection configuration\",\r\n \"state\": \"NotStarted\"\r\n },\r\n {\r\n \"taskId\": \"73e5c296-72d1-46cc-b5b7-cdedd99a8602\",\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 },\r\n {\r\n \"taskId\": \"be7e1531-7467-496a-971b-5fc37b814cc9\",\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 }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2015-11-18T05:49:03.2855344Z\",\r\n \"allowedActions\": [\r\n \"Cancel\",\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"469aa0c1-8efb-4afd-b747-1286fc23d7cf\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"targetObjectName\": \"ppAzure\"\r\n }\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "1764" + "2911" ], "Content-Type": [ "application/json" @@ -1507,7 +1685,7 @@ "no-cache" ], "x-ms-request-id": [ - "b2bec611-f99c-4fa6-a0fd-5d650493cc6f-2015-11-18 05:49:05Z-P 11/18/2015 5:49:05 AM" + "3a71dc18-26a0-4271-942b-d3b9f961f5d4-2015-12-29 09:39:31Z-P 12/29/2015 9:39:32 AM" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1526,19 +1704,19 @@ "ASP.NET" ], "x-ms-client-request-id": [ - "b2bec611-f99c-4fa6-a0fd-5d650493cc6f-2015-11-18 05:49:05Z-P" + "3a71dc18-26a0-4271-942b-d3b9f961f5d4-2015-12-29 09:39:31Z-P" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14967" ], "x-ms-correlation-request-id": [ - "a13bf791-1302-4223-a3da-f82f1280f473" + "1f33d45c-508f-47ad-b579-4ed06fa765e1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T054906Z:a13bf791-1302-4223-a3da-f82f1280f473" + "CENTRALUS:20151229T093932Z:1f33d45c-508f-47ad-b579-4ed06fa765e1" ], "Date": [ - "Wed, 18 Nov 2015 05:49:06 GMT" + "Tue, 29 Dec 2015 09:39:32 GMT" ] }, "StatusCode": 200 @@ -1546,6 +1724,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "00a07ea0-ad8b-491c-9de8-77bf10881499" + "SubscriptionId": "3cf8bef3-d6e2-47fd-8ef9-a305d11c4255" } } \ 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 79b00d515fd4..19a8162ac4fe 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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n }\r\n },\r\n \"location\": \"westus\"\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\": \"6927f33a-55b5-4b95-9d8a-63319d22502b\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": null\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "357" + "359" ], "Content-Type": [ "application/json" @@ -37,10 +37,10 @@ "no-cache" ], "x-ms-request-id": [ - "21c3c2e9-83e2-498d-b7fb-ebbb9a40a8c9" + "1512ec54-80cd-4509-9cde-751a6be5b508" ], "x-ms-client-request-id": [ - "b1bb13a1-5bd8-4d53-9eaa-d280f22d9269" + "38b1f85c-9877-43ad-b9ce-a59d316f7653" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,16 +49,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "21c3c2e9-83e2-498d-b7fb-ebbb9a40a8c9" + "1512ec54-80cd-4509-9cde-751a6be5b508" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212137Z:21c3c2e9-83e2-498d-b7fb-ebbb9a40a8c9" + "CENTRALUS:20151229T095742Z:1512ec54-80cd-4509-9cde-751a6be5b508" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:37 GMT" + "Tue, 29 Dec 2015 09:57:42 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -67,8 +67,8 @@ "StatusCode": 201 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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}", "ResponseHeaders": { "Content-Length": [ - "1289" + "19208" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97,13 +97,13 @@ "14999" ], "x-ms-request-id": [ - "6bfc40a7-f8e3-463e-844b-ea60e5d4ff55" + "812c314a-4092-431e-927d-18b1378c9d40" ], "x-ms-correlation-request-id": [ - "6bfc40a7-f8e3-463e-844b-ea60e5d4ff55" + "812c314a-4092-431e-927d-18b1378c9d40" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212138Z:6bfc40a7-f8e3-463e-844b-ea60e5d4ff55" + "CENTRALUS:20151229T095742Z:812c314a-4092-431e-927d-18b1378c9d40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,19 +112,19 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:37 GMT" + "Tue, 29 Dec 2015 09:57:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/CS-west-us-RecoveryServices/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL0NTLXdlc3QtdXMtUmVjb3ZlcnlTZXJ2aWNlcy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "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": [ - "3ce306b2-6c43-4f9a-8af3-b41c1b1c7f88-2015-11-18 21:21:37Z-P" + "eefbd127-7e5f-4487-9393-f7adb6d92649-2015-12-29 09:57:43Z-P" ], "x-ms-version": [ "2015-01-01" @@ -139,7 +139,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -147,38 +147,44 @@ "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-request-id": [ - "ccb4e320-236a-4e8c-8ebf-1555b2cfe5b5" - ], "x-ms-correlation-request-id": [ - "ccb4e320-236a-4e8c-8ebf-1555b2cfe5b5" + "18b30d2f-2076-48a1-85ba-bcd207506cfc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212138Z:ccb4e320-236a-4e8c-8ebf-1555b2cfe5b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20151229T095744Z:18b30d2f-2076-48a1-85ba-bcd207506cfc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:37 GMT" + "Tue, 29 Dec 2015 09:57:44 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/Default-Storage-WestUS/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "06f37bda-8c1e-4337-ba30-bfd95ae0924e-2015-11-18 21:21:38Z-P" + "b1e89ea1-f4ec-47be-9b43-26180ce6ed76-2015-12-29 09:57:44Z-P" ], "x-ms-version": [ "2015-01-01" @@ -193,7 +199,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -201,38 +207,44 @@ "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-request-id": [ - "1188a1ff-f5b5-4d17-bbaa-44e83c36764c" - ], "x-ms-correlation-request-id": [ - "1188a1ff-f5b5-4d17-bbaa-44e83c36764c" + "8d26d9f4-d81f-447d-80aa-d0108142a6b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212138Z:1188a1ff-f5b5-4d17-bbaa-44e83c36764c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20151229T095745Z:8d26d9f4-d81f-447d-80aa-d0108142a6b1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:38 GMT" + "Tue, 29 Dec 2015 09:57:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtTjJRUlJQVEU0WUpHSUpMQ1k1VTI1UlFWN1A0SzI0RU5VRzZMWVpGNUY1MzZWRlpJTTVQQS1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "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": [ - "9c0eae8c-dc77-4c67-9cb7-00486d69c875-2015-11-18 21:21:38Z-P" + "744bf87d-4045-425b-889a-5431a8085505-2015-12-29 09:57:45Z-P" ], "x-ms-version": [ "2015-01-01" @@ -247,7 +259,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -255,38 +267,44 @@ "Pragma": [ "no-cache" ], + "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" ], - "x-ms-request-id": [ - "44a40eea-fbbf-493f-8d16-99bd039e572e" - ], "x-ms-correlation-request-id": [ - "44a40eea-fbbf-493f-8d16-99bd039e572e" + "5284d07a-0b82-4b67-b5cd-d66839184c28" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212138Z:44a40eea-fbbf-493f-8d16-99bd039e572e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20151229T095746Z:5284d07a-0b82-4b67-b5cd-d66839184c28" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:38 GMT" + "Tue, 29 Dec 2015 09:57:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rg1/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "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": [ - "b9e0f94a-4298-4ebf-8e0a-f00d8436e3cf-2015-11-18 21:21:38Z-P" + "329b2a36-208f-49a5-b604-3da573a26877-2015-12-29 09:57:46Z-P" ], "x-ms-version": [ "2015-01-01" @@ -301,7 +319,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -309,38 +327,104 @@ "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" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14995" ], - "x-ms-request-id": [ - "fa4c36ec-af6e-4c00-86e7-a842565fb12e" - ], "x-ms-correlation-request-id": [ - "fa4c36ec-af6e-4c00-86e7-a842565fb12e" + "56b88bc8-b066-4cd7-a903-3e72580a9f6e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212139Z:fa4c36ec-af6e-4c00-86e7-a842565fb12e" + "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" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1202/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a2e23bb-ac51-43c5-a127-e25db88c8222-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": [ + "b3c3627a-5177-4abb-8476-92923fca1409" + ], + "x-ms-client-request-id": [ + "4a2e23bb-ac51-43c5-a127-e25db88c8222-2015-12-29 09:57:46Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "b3c3627a-5177-4abb-8476-92923fca1409" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095747Z:b3c3627a-5177-4abb-8476-92923fca1409" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:38 GMT" + "Tue, 29 Dec 2015 09:57:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3JnaW5icnMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1209/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b56dbf8f-4f26-4553-88a1-2888920abb20-2015-11-18 21:21:39Z-P" + "a4236436-5f22-436b-8379-0030590a8f0c-2015-12-29 09:57:47Z-P" ], "x-ms-version": [ "2015-01-01" @@ -355,7 +439,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -363,38 +447,164 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "43876023-c459-49c8-a622-63eee625bbc0" + ], + "x-ms-client-request-id": [ + "a4236436-5f22-436b-8379-0030590a8f0c-2015-12-29 09:57:47Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14993" + ], + "x-ms-correlation-request-id": [ + "43876023-c459-49c8-a622-63eee625bbc0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095747Z:43876023-c459-49c8-a622-63eee625bbc0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1220/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7b3ff2e-9c32-4358-ad69-054045bd3448-2015-12-29 09:57: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": [ - "e77b9d43-7c5f-44b1-9a5f-385d5081e6e0" + "091e7093-f197-4ddc-9546-da922131f0c9" + ], + "x-ms-client-request-id": [ + "d7b3ff2e-9c32-4358-ad69-054045bd3448-2015-12-29 09:57:47Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-correlation-request-id": [ - "e77b9d43-7c5f-44b1-9a5f-385d5081e6e0" + "091e7093-f197-4ddc-9546-da922131f0c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212139Z:e77b9d43-7c5f-44b1-9a5f-385d5081e6e0" + "CENTRALUS:20151229T095748Z:091e7093-f197-4ddc-9546-da922131f0c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1223/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21f03270-5147-4976-bae9-6a22297974ce-2015-12-29 09:57: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": [ + "92c1ade6-8a35-4901-8dc1-231d82152755" + ], + "x-ms-client-request-id": [ + "21f03270-5147-4976-bae9-6a22297974ce-2015-12-29 09:57:48Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "92c1ade6-8a35-4901-8dc1-231d82152755" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095749Z:92c1ade6-8a35-4901-8dc1-231d82152755" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:38 GMT" + "Tue, 29 Dec 2015 09:57:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1528/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94499217-150f-435d-b310-5118316f453c-2015-11-18 21:21:39Z-P" + "c03ef189-6107-4fdc-ac37-549e88c6edf2-2015-12-29 09:57:48Z-P" ], "x-ms-version": [ "2015-01-01" @@ -403,10 +613,10 @@ "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"6927f33a-55b5-4b95-9d8a-63319d22502b\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "1179" + "12" ], "Content-Type": [ "application/json" @@ -418,28 +628,28 @@ "no-cache" ], "x-ms-request-id": [ - "06c440d9-11ca-4b41-be9f-cf4a77c8634a" + "8f8cc0f0-49be-431f-8d0e-d6c78f20a18c" ], "x-ms-client-request-id": [ - "94499217-150f-435d-b310-5118316f453c-2015-11-18 21:21:39Z-P" + "c03ef189-6107-4fdc-ac37-549e88c6edf2-2015-12-29 09:57:48Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14990" ], "x-ms-correlation-request-id": [ - "06c440d9-11ca-4b41-be9f-cf4a77c8634a" + "8f8cc0f0-49be-431f-8d0e-d6c78f20a18c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212139Z:06c440d9-11ca-4b41-be9f-cf4a77c8634a" + "CENTRALUS:20151229T095749Z:8f8cc0f0-49be-431f-8d0e-d6c78f20a18c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:39 GMT" + "Tue, 29 Dec 2015 09:57:49 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -448,13 +658,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1666/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTY2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c5b1123-db8d-4deb-9338-a5a99b9b793c-2015-11-18 21:21:39Z-P" + "13f1bcf6-5288-4241-b5b9-2e2691222cff-2015-12-29 09:57:49Z-P" ], "x-ms-version": [ "2015-01-01" @@ -463,10 +673,10 @@ "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"6927f33a-55b5-4b95-9d8a-63319d22502b\",\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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "1179" + "12" ], "Content-Type": [ "application/json" @@ -478,28 +688,28 @@ "no-cache" ], "x-ms-request-id": [ - "b7a841ed-6b74-4279-9bc4-b0a2aa69f220" + "44f26155-518a-46e3-ae27-2da4d6ead142" ], "x-ms-client-request-id": [ - "4c5b1123-db8d-4deb-9338-a5a99b9b793c-2015-11-18 21:21:39Z-P" + "13f1bcf6-5288-4241-b5b9-2e2691222cff-2015-12-29 09:57:49Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14989" ], "x-ms-correlation-request-id": [ - "b7a841ed-6b74-4279-9bc4-b0a2aa69f220" + "44f26155-518a-46e3-ae27-2da4d6ead142" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212140Z:b7a841ed-6b74-4279-9bc4-b0a2aa69f220" + "CENTRALUS:20151229T095750Z:44f26155-518a-46e3-ae27-2da4d6ead142" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:39 GMT" + "Tue, 29 Dec 2015 09:57:50 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -508,13 +718,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "128908b0-b40a-4d42-ad84-180fb6422dd2-2015-11-18 21:21:42Z-P" + "bb22f550-1be2-4c9f-985d-266d48c15f6d-2015-12-29 09:57:50Z-P" ], "x-ms-version": [ "2015-01-01" @@ -523,10 +733,10 @@ "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -538,28 +748,5908 @@ "no-cache" ], "x-ms-request-id": [ - "51f5fe1e-c945-47b1-b2cf-1dee17d96c69" + "e2cb1d20-52f1-4836-8643-e8f3df0e1c14" ], "x-ms-client-request-id": [ - "128908b0-b40a-4d42-ad84-180fb6422dd2-2015-11-18 21:21:42Z-P" + "bb22f550-1be2-4c9f-985d-266d48c15f6d-2015-12-29 09:57:50Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14988" + ], + "x-ms-correlation-request-id": [ + "e2cb1d20-52f1-4836-8643-e8f3df0e1c14" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095750Z:e2cb1d20-52f1-4836-8643-e8f3df0e1c14" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:50 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": [ + "12112d0f-5b0d-4919-92a1-4135a0adf4e2-2015-12-29 09:57: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": [ + "ce1c095a-7219-444c-8615-f0ecad886079" + ], + "x-ms-client-request-id": [ + "12112d0f-5b0d-4919-92a1-4135a0adf4e2-2015-12-29 09:57:50Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "ce1c095a-7219-444c-8615-f0ecad886079" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095751Z:ce1c095a-7219-444c-8615-f0ecad886079" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:51 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": [ + "339906e1-94ab-4123-85ad-572314614afd-2015-12-29 09:57: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": [ + "d647931a-0611-4042-a6be-e9faf113c869" + ], + "x-ms-client-request-id": [ + "339906e1-94ab-4123-85ad-572314614afd-2015-12-29 09:57:51Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "d647931a-0611-4042-a6be-e9faf113c869" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095751Z:d647931a-0611-4042-a6be-e9faf113c869" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:51 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": [ + "d3e0328c-9e8a-4f27-819e-7fa253406aea-2015-12-29 09:57: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": [ + "f75b8803-2eb8-412a-aaea-7dc7d43e2a31" + ], + "x-ms-client-request-id": [ + "d3e0328c-9e8a-4f27-819e-7fa253406aea-2015-12-29 09:57:51Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "f75b8803-2eb8-412a-aaea-7dc7d43e2a31" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095752Z:f75b8803-2eb8-412a-aaea-7dc7d43e2a31" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:52 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": [ + "f5c9cdd4-f1ad-40bb-9cbd-bd5619b7f68a-2015-12-29 09:57: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": [ + "9789090f-8a6a-4304-8276-0a1e70a954d8" + ], + "x-ms-client-request-id": [ + "f5c9cdd4-f1ad-40bb-9cbd-bd5619b7f68a-2015-12-29 09:57:52Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "9789090f-8a6a-4304-8276-0a1e70a954d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095753Z:9789090f-8a6a-4304-8276-0a1e70a954d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:52 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": [ + "bcd026b2-b2d0-445c-a41c-f17d1bb8e651-2015-12-29 09:57: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": [ + "279e34e9-653d-44d0-95b1-c85a951325c7" + ], + "x-ms-client-request-id": [ + "bcd026b2-b2d0-445c-a41c-f17d1bb8e651-2015-12-29 09:57:52Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "279e34e9-653d-44d0-95b1-c85a951325c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095753Z:279e34e9-653d-44d0-95b1-c85a951325c7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:53 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": [ + "75767307-e905-41b0-95f2-dd7bb0c20481-2015-12-29 09:57: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": [ + "a95dcc66-da0f-4909-b1ba-bd3755feb403" + ], + "x-ms-client-request-id": [ + "75767307-e905-41b0-95f2-dd7bb0c20481-2015-12-29 09:57:53Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "a95dcc66-da0f-4909-b1ba-bd3755feb403" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095754Z:a95dcc66-da0f-4909-b1ba-bd3755feb403" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:53 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": [ + "d5c5f180-29f4-43a2-bb78-e08aae7a680b-2015-12-29 09:57: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": [ + "292ddccf-f452-4420-a914-91f1a9e2de08" + ], + "x-ms-client-request-id": [ + "d5c5f180-29f4-43a2-bb78-e08aae7a680b-2015-12-29 09:57:54Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "292ddccf-f452-4420-a914-91f1a9e2de08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095754Z:292ddccf-f452-4420-a914-91f1a9e2de08" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:54 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": [ + "4f2312f4-7ea7-4118-9277-2cc54a6f8290-2015-12-29 09:57: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": [ + "c0ba7969-d7f1-42c4-9a3c-dad1f4821d42" + ], + "x-ms-client-request-id": [ + "4f2312f4-7ea7-4118-9277-2cc54a6f8290-2015-12-29 09:57:54Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "c0ba7969-d7f1-42c4-9a3c-dad1f4821d42" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095755Z:c0ba7969-d7f1-42c4-9a3c-dad1f4821d42" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:55 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": [ + "3dcdcc1a-e6b9-4329-9707-704fa3c3b8bc-2015-12-29 09:57: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": [ + "3a0668df-bda9-4b7f-9511-ae2a758c845f" + ], + "x-ms-client-request-id": [ + "3dcdcc1a-e6b9-4329-9707-704fa3c3b8bc-2015-12-29 09:57:55Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "3a0668df-bda9-4b7f-9511-ae2a758c845f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T095756Z:3a0668df-bda9-4b7f-9511-ae2a758c845f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 09:57:55 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": [ + "e13ac796-6b7b-43d0-a8a2-92b14677240f-2015-12-29 09:57: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": [ + "3c5b88b0-ba1b-4a85-a0ef-99b8143d88bb" + ], + "x-ms-client-request-id": [ + "e13ac796-6b7b-43d0-a8a2-92b14677240f-2015-12-29 09:57:55Z-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" ], "x-ms-correlation-request-id": [ - "51f5fe1e-c945-47b1-b2cf-1dee17d96c69" + "03e4e10c-625b-451a-9cf5-8aaa65de9867" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212143Z:51f5fe1e-c945-47b1-b2cf-1dee17d96c69" + "CENTRALUS:20151229T095849Z:03e4e10c-625b-451a-9cf5-8aaa65de9867" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:43 GMT" + "Tue, 29 Dec 2015 09:58:48 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -568,8 +6658,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -595,10 +6685,10 @@ "no-cache" ], "x-ms-request-id": [ - "c31f7851-5f44-43d7-8497-241e51e14457" + "43d6835d-84e9-4cd7-921e-81fe3392ae5e" ], "x-ms-client-request-id": [ - "0f58698f-3e14-4fa9-b8fb-5fe33a460526" + "6bf60a5b-777e-4bdb-937b-2fe1ea9548e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,16 +6697,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "c31f7851-5f44-43d7-8497-241e51e14457" + "43d6835d-84e9-4cd7-921e-81fe3392ae5e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T212142Z:c31f7851-5f44-43d7-8497-241e51e14457" + "CENTRALUS:20151229T095852Z:43d6835d-84e9-4cd7-921e-81fe3392ae5e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 21:21:42 GMT" + "Tue, 29 Dec 2015 09:58:52 GMT" ] }, "StatusCode": 200 @@ -624,6 +6714,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "00a07ea0-ad8b-491c-9de8-77bf10881499" + "SubscriptionId": "cfead826-670f-4c45-8f3f-cfee4217d76b" } } \ No newline at end of file diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index da6cef707af5..c4ee23512be3 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -51,7 +51,7 @@ False ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - + False ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll From 2c603abb7b803fdfe42ecec6c785f250be0f2bff Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Tue, 29 Dec 2015 18:17:45 +0530 Subject: [PATCH 10/12] Updating session records for RecoveryServices Project --- .../Commands.RecoveryServices.Test.csproj | 7 +- .../VaultCRUDTests.json | 6418 ++++++++++++++++- .../packages.config | 4 +- .../Commands.RecoveryServices.csproj | 2 +- .../Commands.SiteRecovery.Test.csproj | 1 + .../Commands.SiteRecovery.csproj | 1 + 6 files changed, 6263 insertions(+), 170 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 c76fc34e012f..ca2b10360287 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj @@ -49,19 +49,20 @@ ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.2-preview\lib\net40\Microsoft.Azure.Management.RecoveryServices.dll + True False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.7-preview\lib\net40\Microsoft.Azure.ResourceManager.dll - + False - ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5774.40163-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5799.28345-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll True False - ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5774.40163-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll + ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5799.28345-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll True 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 a8905b13dd66..d2ce023b2abe 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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"properties\": {}\r\n}", "RequestHeaders": { @@ -19,13 +19,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"9b2a3e0e-7fda-48eb-90c2-e1b3c29d26f5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n}", + "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}", "ResponseHeaders": { "Content-Length": [ - "400" + "402" ], "Content-Type": [ "application/json" @@ -37,10 +37,10 @@ "no-cache" ], "x-ms-request-id": [ - "544208c3-9c2f-4a51-af4f-d3b69ec61889" + "142caa0e-d8ec-4511-940d-2c7637f6e98b" ], "x-ms-client-request-id": [ - "c1b24b1f-04d1-43d4-8546-7fd0aadfd804" + "c1681a27-fc52-4a40-bca5-3ec4bd321f3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -49,16 +49,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "544208c3-9c2f-4a51-af4f-d3b69ec61889" + "142caa0e-d8ec-4511-940d-2c7637f6e98b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053655Z:544208c3-9c2f-4a51-af4f-d3b69ec61889" + "CENTRALUS:20151229T114429Z:142caa0e-d8ec-4511-940d-2c7637f6e98b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:36:55 GMT" + "Tue, 29 Dec 2015 11:44:28 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -67,8 +67,8 @@ "StatusCode": 201 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups?api-version=2015-01-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups?api-version=2015-01-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -76,13 +76,13 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"name\": \"RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/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/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs\",\r\n \"name\": \"rginbrs\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup\",\r\n \"name\": \"testsitegroup\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"owner\": \"billg\"\r\n },\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/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}", "ResponseHeaders": { "Content-Length": [ - "1289" + "19208" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97,13 +97,13 @@ "14999" ], "x-ms-request-id": [ - "c955cc8e-1d48-420d-a24b-75f80d5240ea" + "aef3fb86-a0d9-4d3d-af7f-d8ba9b740f2a" ], "x-ms-correlation-request-id": [ - "c955cc8e-1d48-420d-a24b-75f80d5240ea" + "aef3fb86-a0d9-4d3d-af7f-d8ba9b740f2a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053702Z:c955cc8e-1d48-420d-a24b-75f80d5240ea" + "CENTRALUS:20151229T114430Z:aef3fb86-a0d9-4d3d-af7f-d8ba9b740f2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -112,25 +112,25 @@ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:02 GMT" + "Tue, 29 Dec 2015 11:44:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/CS-west-us-RecoveryServices/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL0NTLXdlc3QtdXMtUmVjb3ZlcnlTZXJ2aWNlcy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "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": [ - "d43eb81b-12ab-4cb1-a8d7-e0b02b803d49-2015-11-18 05:37:03Z-P" + "8b20bd1e-8faf-494b-88ce-fb700d27a48f-2015-12-29 11:44:29Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -139,7 +139,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -147,44 +147,50 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "e1a4b576-19ce-455e-b530-be8bcdcd4151" + ], + "x-ms-client-request-id": [ + "8b20bd1e-8faf-494b-88ce-fb700d27a48f-2015-12-29 11:44:29Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14998" ], - "x-ms-request-id": [ - "018b14d4-9535-4c3b-bb06-a11ab40be24c" - ], "x-ms-correlation-request-id": [ - "018b14d4-9535-4c3b-bb06-a11ab40be24c" + "e1a4b576-19ce-455e-b530-be8bcdcd4151" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053706Z:018b14d4-9535-4c3b-bb06-a11ab40be24c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20151229T114432Z:e1a4b576-19ce-455e-b530-be8bcdcd4151" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:06 GMT" + "Tue, 29 Dec 2015 11:44:31 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/Default-Storage-WestUS/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU3RvcmFnZS1XZXN0VVMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "86af6339-c981-48e7-b396-1dcd32b510a8-2015-11-18 05:37:07Z-P" + "83da4387-e36b-457c-a1f1-5238141ef79f-2015-12-29 11:44:31Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -193,7 +199,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -201,44 +207,50 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "8e3b28bc-37fd-4afd-8604-c33dfa566767" + ], + "x-ms-client-request-id": [ + "83da4387-e36b-457c-a1f1-5238141ef79f-2015-12-29 11:44:31Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14997" ], - "x-ms-request-id": [ - "88e0081f-6749-4fd5-ab0e-dd7468b654ad" - ], "x-ms-correlation-request-id": [ - "88e0081f-6749-4fd5-ab0e-dd7468b654ad" + "8e3b28bc-37fd-4afd-8604-c33dfa566767" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053709Z:88e0081f-6749-4fd5-ab0e-dd7468b654ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20151229T114432Z:8e3b28bc-37fd-4afd-8604-c33dfa566767" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:08 GMT" + "Tue, 29 Dec 2015 11:44:32 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/RecoveryServices-N2QRRPTE4YJGIJLCY5U25RQV7P4K24ENUG6LYZF5F536VFZIM5PA-West-US/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL1JlY292ZXJ5U2VydmljZXMtTjJRUlJQVEU0WUpHSUpMQ1k1VTI1UlFWN1A0SzI0RU5VRzZMWVpGNUY1MzZWRlpJTTVQQS1XZXN0LVVTL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "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": [ - "cfa57ebd-4e92-49d6-b31a-b80296997c24-2015-11-18 05:37:09Z-P" + "25b7dc6a-c383-4b4e-aeb2-9ed7ffa65fae-2015-12-29 11:44:32Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -247,7 +259,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -255,44 +267,50 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "08dfe7b5-3af4-4efa-abad-5cf63e328891" + ], + "x-ms-client-request-id": [ + "25b7dc6a-c383-4b4e-aeb2-9ed7ffa65fae-2015-12-29 11:44:32Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14996" ], - "x-ms-request-id": [ - "26be3d3f-41c4-4a6d-8ad7-fd8cadaf1e0c" - ], "x-ms-correlation-request-id": [ - "26be3d3f-41c4-4a6d-8ad7-fd8cadaf1e0c" + "08dfe7b5-3af4-4efa-abad-5cf63e328891" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053710Z:26be3d3f-41c4-4a6d-8ad7-fd8cadaf1e0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20151229T114433Z:08dfe7b5-3af4-4efa-abad-5cf63e328891" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:09 GMT" + "Tue, 29 Dec 2015 11:44:32 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rg1/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3JnMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "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": [ - "02ed7f4e-dddf-424d-ad27-546b6fdefa6d-2015-11-18 05:37:10Z-P" + "c5268072-2230-4909-a839-5103067085f4-2015-12-29 11:44:32Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -301,7 +319,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -309,44 +327,110 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "f2499c8b-a897-4503-a9a4-9a40d09216a4" + ], + "x-ms-client-request-id": [ + "c5268072-2230-4909-a839-5103067085f4-2015-12-29 11:44:32Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14995" ], - "x-ms-request-id": [ - "caeda191-3058-4144-b4b6-c219e5a9590b" - ], "x-ms-correlation-request-id": [ - "caeda191-3058-4144-b4b6-c219e5a9590b" + "f2499c8b-a897-4503-a9a4-9a40d09216a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053710Z:caeda191-3058-4144-b4b6-c219e5a9590b" + "CENTRALUS:20151229T114434Z:f2499c8b-a897-4503-a9a4-9a40d09216a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 11:44:33 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1202/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d471ccce-80cc-491c-9a4e-c868c1f7b4ba-2015-12-29 11:44: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}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8569e298-fc85-4743-8710-865a508faf70" + ], + "x-ms-client-request-id": [ + "d471ccce-80cc-491c-9a4e-c868c1f7b4ba-2015-12-29 11:44:33Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "8569e298-fc85-4743-8710-865a508faf70" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114434Z:8569e298-fc85-4743-8710-865a508faf70" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:10 GMT" + "Tue, 29 Dec 2015 11:44:33 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/rginbrs/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3JnaW5icnMvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1209/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48587281-29f5-47b7-bf6d-d5348b0ec6c6-2015-11-18 05:37:10Z-P" + "906caf33-35a7-40c5-a733-510adb713de0-2015-12-29 11:44:33Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -355,7 +439,7 @@ "12" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" @@ -363,50 +447,176 @@ "Pragma": [ "no-cache" ], + "x-ms-request-id": [ + "d9e89ff1-6553-4dfe-a25a-9094a19d4380" + ], + "x-ms-client-request-id": [ + "906caf33-35a7-40c5-a733-510adb713de0-2015-12-29 11:44:33Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14993" + ], + "x-ms-correlation-request-id": [ + "d9e89ff1-6553-4dfe-a25a-9094a19d4380" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114435Z:d9e89ff1-6553-4dfe-a25a-9094a19d4380" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 11:44:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1220/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daeea5b1-1e41-4a45-b648-9bdbb681e05d-2015-12-29 11:44: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": [ - "9d84170e-35cf-42ab-9cee-88f21d9cfcfb" + "e29a68e7-a0a5-45c0-b0a3-dbcbacccd062" + ], + "x-ms-client-request-id": [ + "daeea5b1-1e41-4a45-b648-9bdbb681e05d-2015-12-29 11:44:34Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-correlation-request-id": [ - "9d84170e-35cf-42ab-9cee-88f21d9cfcfb" + "e29a68e7-a0a5-45c0-b0a3-dbcbacccd062" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053711Z:9d84170e-35cf-42ab-9cee-88f21d9cfcfb" + "CENTRALUS:20151229T114435Z:e29a68e7-a0a5-45c0-b0a3-dbcbacccd062" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 11:44:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1223/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTIyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a183a9d-dfe0-4e26-97c7-d7e298e86019-2015-12-29 11:44: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}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "13bbdad5-705e-49e5-aace-9eda8107c7a1" + ], + "x-ms-client-request-id": [ + "5a183a9d-dfe0-4e26-97c7-d7e298e86019-2015-12-29 11:44:35Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "13bbdad5-705e-49e5-aace-9eda8107c7a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114436Z:13bbdad5-705e-49e5-aace-9eda8107c7a1" + ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:10 GMT" + "Tue, 29 Dec 2015 11:44:36 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1528/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29d9dd9f-41b4-41ee-b9f3-0570bb53ff22-2015-11-18 05:37:10Z-P" + "054c4b58-0583-4544-9387-f3147e5b5ff0-2015-12-29 11:44:35Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"9b2a3e0e-7fda-48eb-90c2-e1b3c29d26f5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "1222" + "12" ], "Content-Type": [ "application/json" @@ -418,28 +628,28 @@ "no-cache" ], "x-ms-request-id": [ - "b492a63b-4c96-4463-acfe-c817dd987fac" + "70d1f1f9-1419-4a80-bf5e-c290b3c85776" ], "x-ms-client-request-id": [ - "29d9dd9f-41b4-41ee-b9f3-0570bb53ff22-2015-11-18 05:37:10Z-P" + "054c4b58-0583-4544-9387-f3147e5b5ff0-2015-12-29 11:44:35Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14990" ], "x-ms-correlation-request-id": [ - "b492a63b-4c96-4463-acfe-c817dd987fac" + "70d1f1f9-1419-4a80-bf5e-c290b3c85776" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053711Z:b492a63b-4c96-4463-acfe-c817dd987fac" + "CENTRALUS:20151229T114436Z:70d1f1f9-1419-4a80-bf5e-c290b3c85776" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:11 GMT" + "Tue, 29 Dec 2015 11:44:36 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -448,25 +658,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/csmrg1666/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMTY2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXNCVlREMi92YXVsdHM/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd9f1ed7-7cbd-4b57-8d07-22465d65a00f-2015-11-18 05:37:12Z-P" + "426beb8d-c918-4e03-a303-54e1a5754246-2015-12-29 11:44:36Z-P" ], "x-ms-version": [ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"rsv1\",\r\n \"etag\": \"9b2a3e0e-7fda-48eb-90c2-e1b3c29d26f5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "1222" + "12" ], "Content-Type": [ "application/json" @@ -478,28 +688,28 @@ "no-cache" ], "x-ms-request-id": [ - "d4807c80-5c0d-49c1-94d2-5d8930ad6a1c" + "ae8cd6bc-8749-408c-b43a-b62a29c4a4a2" ], "x-ms-client-request-id": [ - "dd9f1ed7-7cbd-4b57-8d07-22465d65a00f-2015-11-18 05:37:12Z-P" + "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": [ - "14992" + "14989" ], "x-ms-correlation-request-id": [ - "d4807c80-5c0d-49c1-94d2-5d8930ad6a1c" + "ae8cd6bc-8749-408c-b43a-b62a29c4a4a2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053713Z:d4807c80-5c0d-49c1-94d2-5d8930ad6a1c" + "CENTRALUS:20151229T114437Z:ae8cd6bc-8749-408c-b43a-b62a29c4a4a2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:13 GMT" + "Tue, 29 Dec 2015 11:44:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -508,25 +718,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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": [ - "19c14c8f-49be-476e-81ea-6b3a69b1cd74-2015-11-18 05:37:23Z-P" + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello\",\r\n \"etag\": \"2d0a1c39-8e31-4eff-8ca5-132887a68546\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hello51\",\r\n \"etag\": \"73687000-22c9-4515-8e21-5e05616a583f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/hello51\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"tier\": null,\r\n \"size\": null,\r\n \"family\": null,\r\n \"capacity\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "821" + "12" ], "Content-Type": [ "application/json" @@ -538,28 +748,28 @@ "no-cache" ], "x-ms-request-id": [ - "030b73e7-cabe-42d3-923e-8c884db58f3c" + "f553a93c-c913-4fb9-b7d3-e5d45671b466" ], "x-ms-client-request-id": [ - "19c14c8f-49be-476e-81ea-6b3a69b1cd74-2015-11-18 05:37:23Z-P" + "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": [ - "14990" + "14988" ], "x-ms-correlation-request-id": [ - "030b73e7-cabe-42d3-923e-8c884db58f3c" + "f553a93c-c913-4fb9-b7d3-e5d45671b466" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053724Z:030b73e7-cabe-42d3-923e-8c884db58f3c" + "CENTRALUS:20151229T114438Z:f553a93c-c913-4fb9-b7d3-e5d45671b466" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:24 GMT" + "Tue, 29 Dec 2015 11:44:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -568,25 +778,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1/extendedInformation/vaultExtendedInfo?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9yc3YxL2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "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": [ - "96f3858e-8f5b-4c64-8d83-c6562659b6e8-2015-11-18 05:37:13Z-P" + "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/5.0.0.0" + "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" @@ -598,28 +808,5908 @@ "no-cache" ], "x-ms-request-id": [ - "b411a6ce-4a22-4d4c-a9cd-ee3640123d29" + "074a5e82-6c5a-4642-96aa-4cda3dea7a86" ], "x-ms-client-request-id": [ - "96f3858e-8f5b-4c64-8d83-c6562659b6e8-2015-11-18 05:37:13Z-P" + "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": [ - "14991" + "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}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9c7a1b6c-baee-4949-990b-90683927eea1" + ], + "x-ms-client-request-id": [ + "76dd0962-e470-4f5d-af59-c33aa0ad2c31-2015-12-29 11:45:28Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "9c7a1b6c-baee-4949-990b-90683927eea1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114529Z:9c7a1b6c-baee-4949-990b-90683927eea1" + ], + "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/samhita/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL3NhbWhpdGEvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "161123e3-8b17-4c07-9dff-a5d40f787540-2015-12-29 11:45: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": [ + "f2f73964-a3be-43c5-9785-277e10f0a2bc" + ], + "x-ms-client-request-id": [ + "161123e3-8b17-4c07-9dff-a5d40f787540-2015-12-29 11:45:29Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "x-ms-correlation-request-id": [ + "f2f73964-a3be-43c5-9785-277e10f0a2bc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114530Z:f2f73964-a3be-43c5-9785-277e10f0a2bc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 11:45:30 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": [ + "7a4bdfe4-0c71-4838-b3aa-9b58a2c751a5-2015-12-29 11:45: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": [ + "1bbe408f-603d-475f-8b33-f19762dd5598" + ], + "x-ms-client-request-id": [ + "7a4bdfe4-0c71-4838-b3aa-9b58a2c751a5-2015-12-29 11:45:29Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "1bbe408f-603d-475f-8b33-f19762dd5598" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114531Z:1bbe408f-603d-475f-8b33-f19762dd5598" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 11:45:30 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": [ + "a40b3477-8694-49fc-9572-87cfbf2065a4-2015-12-29 11:45: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": [ + "e36bd807-9899-4ddd-9016-c079c789ec95" + ], + "x-ms-client-request-id": [ + "a40b3477-8694-49fc-9572-87cfbf2065a4-2015-12-29 11:45:30Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "e36bd807-9899-4ddd-9016-c079c789ec95" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114531Z:e36bd807-9899-4ddd-9016-c079c789ec95" + ], + "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/TemplateStore/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1RlbXBsYXRlU3RvcmUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed7d5d35-c52d-45c7-8a58-210d06d3d636-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}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "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" + ], + "x-ms-client-request-id": [ + "309e4dac-e732-4624-8e20-746e5a5ea669-2015-12-29 11:45:32Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "8812e93e-35f8-40af-b1bc-33fb7a90d3c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114533Z:8812e93e-35f8-40af-b1bc-33fb7a90d3c3" + ], + "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/VS-testacc201-Group/providers/Microsoft.RecoveryServicesBVTD2/vaults?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1ZTLXRlc3RhY2MyMDEtR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzQlZURDIvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ad29e5a-f892-4eac-9274-c05f239a9ee6-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}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d081f5ec-88cf-41c7-a2be-f39e50002e44" + ], + "x-ms-client-request-id": [ + "6ad29e5a-f892-4eac-9274-c05f239a9ee6-2015-12-29 11:45:32Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "d081f5ec-88cf-41c7-a2be-f39e50002e44" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114534Z:d081f5ec-88cf-41c7-a2be-f39e50002e44" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 11:45:34 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": [ + "c8cb26f1-0c78-42f3-b572-8b7d399f9da3-2015-12-29 11:45: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}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4a5685ec-171f-446d-9d12-1c71f5f8cfa4" + ], + "x-ms-client-request-id": [ + "c8cb26f1-0c78-42f3-b572-8b7d399f9da3-2015-12-29 11:45:33Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "4a5685ec-171f-446d-9d12-1c71f5f8cfa4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151229T114534Z:4a5685ec-171f-446d-9d12-1c71f5f8cfa4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 29 Dec 2015 11:45:34 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ] + }, + "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==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2e5226d-a013-4a00-964d-b0cf3c13065b-2015-12-29 11:45:35Z-P" + ], + "x-ms-version": [ + "2015-01-01" + ], + "User-Agent": [ + "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}", + "ResponseHeaders": { + "Content-Length": [ + "100" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5f1a8842-0c90-433b-a828-501043dba90a" + ], + "x-ms-client-request-id": [ + "b2e5226d-a013-4a00-964d-b0cf3c13065b-2015-12-29 11:45:35Z-P" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" ], "x-ms-correlation-request-id": [ - "b411a6ce-4a22-4d4c-a9cd-ee3640123d29" + "5f1a8842-0c90-433b-a828-501043dba90a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053714Z:b411a6ce-4a22-4d4c-a9cd-ee3640123d29" + "CENTRALUS:20151229T114536Z:5f1a8842-0c90-433b-a828-501043dba90a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:13 GMT" + "Tue, 29 Dec 2015 11:45:36 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -628,10 +6718,10 @@ "StatusCode": 404 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1/extendedInformation/vaultExtendedInfo?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9yc3YxL2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNS0wOC0xNQ==", + "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\": \"la/7d/MD575Q7LrYMVJmbw==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "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" @@ -640,19 +6730,19 @@ "102" ], "x-ms-client-request-id": [ - "9c5a9959-3c57-4907-bd99-d1254005fa16-2015-11-18 05:37:14Z-P" + "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/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"location\": null,\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"42e83330-c8c6-4706-acae-53acc0710bd7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"integrityKey\": \"la/7d/MD575Q7LrYMVJmbw==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\",\r\n \"sku\": null\r\n}", + "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": [ - "426" + "428" ], "Content-Type": [ "application/json" @@ -664,10 +6754,10 @@ "no-cache" ], "x-ms-request-id": [ - "453c06fa-0b47-4934-91db-abbb2b93185b" + "fadc36b8-db25-4dff-987c-7af053fce679" ], "x-ms-client-request-id": [ - "9c5a9959-3c57-4907-bd99-d1254005fa16-2015-11-18 05:37:14Z-P" + "ed64de60-1c9c-414b-8f35-313053a84b47-2015-12-29 11:45:36Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,16 +6766,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "453c06fa-0b47-4934-91db-abbb2b93185b" + "fadc36b8-db25-4dff-987c-7af053fce679" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053718Z:453c06fa-0b47-4934-91db-abbb2b93185b" + "CENTRALUS:20151229T114538Z:fadc36b8-db25-4dff-987c-7af053fce679" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:17 GMT" + "Tue, 29 Dec 2015 11:45:38 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -694,10 +6784,10 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1/certificates/rsv100a07ea0-ad8b-491c-9de8-77bf10881499-11-18-2015-vaultcredentials?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9yc3YxL2NlcnRpZmljYXRlcy9yc3YxMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5LTExLTE4LTIwMTUtdmF1bHRjcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE1LTA4LTE1", + "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\": \"MIIC3TCCAcWgAwIBAgIQSIn6UyUhmblJRqQf6a1vdTANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE1MTExODA1MjcxM1oXDTE1MTEyMzA1MzcxM1owHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAML0eg3sUPOqu/tSYYIDlMfJmip+m/UWnzv0KMWX4QRqPonpWFP9bOd1MP9n3EOfgDRdk79WYSVHhMo3JJJtKxasuuywKKeSOHUelHYLqes7W8qeg2c4782WhAkWKPG/kERcnZatJWYSqdPULbWyeUawIn40MvryNDot2klNiUE5+dMpoMAipi/To0EjTOOogA2knnO7QVUK69Pr0EsyNGUX/Jsrxdq5nbUrU49JWO+F09D3ZSJKNXAjimI91yj47caGCD6pus18VwfJD+qkHuiW8GdO7kZ9fUxDaRLDWc+QQcUgBgrX/J2Fend6DMoR6QVMAylV50//5kICSnXUlNECAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBADgajvrlFR8moWEhvdiTCaZUqYj5rml/VidgWxvIDAkPJ9YWYiIcZUC9j0mHxEBSUMLfsCLDNt0SKE3NnId+Wr/R+7sEp3oQZ0xtsennh50mEBzQhn2nYWhOZWaAyFDMqvaGbsgT1cRqWK69/GQ8SIzze3xFJRw07Zojr2sNRHlv8j8o5Gdj/+0OfslZiYUf2ujzJR9SJEsuwVoEkvokAbCTTVg0Ohq0eRy4Ca7HKbN/q/A7tWQfmo3w1AoQ68LrS+OdKlgsIdk2hwxr1kxEYhNdtFOPb5kG4kOL4semPKCbwsz+ZfZSu5BL73I4Du7qFnX8GZeSizlm3b3YRLXhc8k=\"\r\n }\r\n}", + "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" @@ -706,16 +6796,16 @@ "1035" ], "x-ms-client-request-id": [ - "ad29fdd9-75c8-4a7c-9943-6bec570d41ac-2015-11-18 05:37:18Z-P" + "f57fb0eb-8894-4e93-bb77-b1b642a8ac29-2015-12-29 11:45:38Z-P" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"rsv100a07ea0-ad8b-491c-9de8-77bf10881499-11-18-2015-vaultcredentials\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/certificates\",\r\n \"id\": \"/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1/certificates/rsv100a07ea0-ad8b-491c-9de8-77bf10881499-11-18-2015-vaultcredentials\",\r\n \"properties\": {\r\n \"certificate\": \"MIIC3TCCAcWgAwIBAgIQSIn6UyUhmblJRqQf6a1vdTANBgkqhkiG9w0BAQUFADAeMRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTE1MTExODA1MjcxM1oXDTE1MTEyMzA1MzcxM1owHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAML0eg3sUPOqu/tSYYIDlMfJmip+m/UWnzv0KMWX4QRqPonpWFP9bOd1MP9n3EOfgDRdk79WYSVHhMo3JJJtKxasuuywKKeSOHUelHYLqes7W8qeg2c4782WhAkWKPG/kERcnZatJWYSqdPULbWyeUawIn40MvryNDot2klNiUE5+dMpoMAipi/To0EjTOOogA2knnO7QVUK69Pr0EsyNGUX/Jsrxdq5nbUrU49JWO+F09D3ZSJKNXAjimI91yj47caGCD6pus18VwfJD+qkHuiW8GdO7kZ9fUxDaRLDWc+QQcUgBgrX/J2Fend6DMoR6QVMAylV50//5kICSnXUlNECAwEAAaMXMBUwEwYDVR0lBAwwCgYIKwYBBQUHAwIwDQYJKoZIhvcNAQEFBQADggEBADgajvrlFR8moWEhvdiTCaZUqYj5rml/VidgWxvIDAkPJ9YWYiIcZUC9j0mHxEBSUMLfsCLDNt0SKE3NnId+Wr/R+7sEp3oQZ0xtsennh50mEBzQhn2nYWhOZWaAyFDMqvaGbsgT1cRqWK69/GQ8SIzze3xFJRw07Zojr2sNRHlv8j8o5Gdj/+0OfslZiYUf2ujzJR9SJEsuwVoEkvokAbCTTVg0Ohq0eRy4Ca7HKbN/q/A7tWQfmo3w1AoQ68LrS+OdKlgsIdk2hwxr1kxEYhNdtFOPb5kG4kOL4semPKCbwsz+ZfZSu5BL73I4Du7qFnX8GZeSizlm3b3YRLXhc8k=\",\r\n \"resourceId\": 6356467173110839686,\r\n \"globalAcsNamespace\": \"wusppe1rrp1users\",\r\n \"globalAcsHostName\": \"accesscontrol.windows.net\",\r\n \"globalAcsRPRealm\": \"http://windowscloudbackup/m3\",\r\n \"subject\": \"CN=Windows Azure Tools\",\r\n \"validFrom\": \"2015-11-18T10:57:13+05:30\",\r\n \"validTo\": \"2015-11-23T11:07:13+05:30\",\r\n \"thumbprint\": \"C4B1C7C86888DA0B102D359D04AF69508E85CCC5\",\r\n \"friendlyName\": \"\",\r\n \"issuer\": \"CN=Windows Azure Tools\"\r\n }\r\n}", + "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": [ - "1762" + "1765" ], "Content-Type": [ "application/json" @@ -727,11 +6817,11 @@ "no-cache" ], "x-ms-request-id": [ - "db9b5de3-0239-447f-9336-23aa2617e192" + "edb4c941-f15e-4ae5-9d31-490178814099" ], "x-ms-client-request-id": [ - "ad29fdd9-75c8-4a7c-9943-6bec570d41ac-2015-11-18 05:37:18Z-P", - "ad29fdd9-75c8-4a7c-9943-6bec570d41ac-2015-11-18 05:37:18Z-P" + "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" @@ -740,16 +6830,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "db9b5de3-0239-447f-9336-23aa2617e192" + "edb4c941-f15e-4ae5-9d31-490178814099" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053720Z:db9b5de3-0239-447f-9336-23aa2617e192" + "CENTRALUS:20151229T114542Z:edb4c941-f15e-4ae5-9d31-490178814099" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:20 GMT" + "Tue, 29 Dec 2015 11:45:41 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -758,8 +6848,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/00a07ea0-ad8b-491c-9de8-77bf10881499/resourceGroups/testsitegroup/providers/Microsoft.RecoveryServices/vaults/rsv1?api-version=2015-08-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMDBhMDdlYTAtYWQ4Yi00OTFjLTlkZTgtNzdiZjEwODgxNDk5L3Jlc291cmNlR3JvdXBzL3Rlc3RzaXRlZ3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", + "RequestUri": "/Subscriptions/cfead826-670f-4c45-8f3f-cfee4217d76b/resourceGroups/S91-1/providers/Microsoft.RecoveryServicesBVTD2/vaults/rsv1?api-version=2015-08-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvY2ZlYWQ4MjYtNjcwZi00YzQ1LThmM2YtY2ZlZTQyMTdkNzZiL3Jlc291cmNlR3JvdXBzL1M5MS0xL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlc0JWVEQyL3ZhdWx0cy9yc3YxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -770,7 +6860,7 @@ "2015-01-01" ], "User-Agent": [ - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/5.0.0.0" + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesManagementClient/1.0.0.0" ] }, "ResponseBody": "", @@ -785,10 +6875,10 @@ "no-cache" ], "x-ms-request-id": [ - "6a7d22d3-67af-4842-8275-3f9948e9dded" + "3f4aa4db-d583-414c-bbeb-97c6793297e3" ], "x-ms-client-request-id": [ - "32f0756d-486d-4c98-aece-5c1312f388f2" + "c8b800fe-3e33-4caf-8355-23c6818bed87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,16 +6887,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "6a7d22d3-67af-4842-8275-3f9948e9dded" + "3f4aa4db-d583-414c-bbeb-97c6793297e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20151118T053724Z:6a7d22d3-67af-4842-8275-3f9948e9dded" + "CENTRALUS:20151229T114547Z:3f4aa4db-d583-414c-bbeb-97c6793297e3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 Nov 2015 05:37:24 GMT" + "Tue, 29 Dec 2015 11:45:46 GMT" ] }, "StatusCode": 200 @@ -814,6 +6904,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "00a07ea0-ad8b-491c-9de8-77bf10881499" + "SubscriptionId": "cfead826-670f-4c45-8f3f-cfee4217d76b" } } \ 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 c27333b10017..e4d9086f65e8 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/packages.config @@ -6,8 +6,8 @@ - - + + diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj index fdd01e270a49..183533657d2f 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj @@ -52,8 +52,8 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - False ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.1.0.2-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/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj index c73962bb805b..c12619fa5993 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj @@ -50,6 +50,7 @@ False ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-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 c4ee23512be3..20c85df1ea56 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -54,6 +54,7 @@ False ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-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 614b4f4acd4d31ad4acbb8ff3d2c54c8ee0e7b0c Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Tue, 29 Dec 2015 18:28:36 +0530 Subject: [PATCH 11/12] Updating siterecovery csproj files --- .../Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj | 1 - .../Commands.SiteRecovery/Commands.SiteRecovery.csproj | 1 - 2 files changed, 2 deletions(-) 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 c12619fa5993..8b5a7d9d69b2 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery.Test/Commands.SiteRecovery.Test.csproj @@ -48,7 +48,6 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - False ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll True diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj index 20c85df1ea56..04397d238170 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Commands.SiteRecovery.csproj @@ -52,7 +52,6 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll - False ..\..\..\packages\Microsoft.Azure.Management.SiteRecovery.1.0.2-preview\lib\net40\Microsoft.Azure.Management.SiteRecovery.dll True From b1b2a4213404c6ffd9673549445e1d0b3d45d30d Mon Sep 17 00:00:00 2001 From: Avneesh Rai Date: Wed, 30 Dec 2015 16:25:01 +0530 Subject: [PATCH 12/12] Taking PR comments --- .../ScenarioTests/RecoveryServicesTests.ps1 | 3 -- .../Common/RecoveryServicesCmdletBase.cs | 24 +++++++------ .../Common/SiteRecoveryCmdletBase.cs | 36 +++++++++++-------- .../Commands.SiteRecovery/Models/PSObjects.cs | 6 ++-- 4 files changed, 40 insertions(+), 29 deletions(-) diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 index e72cf151cafe..4cac83a7cf00 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 @@ -43,9 +43,6 @@ function Test-RecoveryServicesVaultCRUDTests Assert-NotNull($vaultToBeRemoved.ID) Assert-NotNull($vaultToBeRemoved.Type) - # Download Vault settings file - Get-AzureRmRecoveryServicesVaultSettingsFile -Vault $vaultToBeRemoved - # Remove Vault Remove-AzureRmRecoveryServicesVault -Vault $vaultToBeRemoved $vaults = Get-AzureRmRecoveryServicesVault -ResourceGroupName S91-1 -Name rsv1 diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs index 678f2808db30..302b94081d42 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices/Common/RecoveryServicesCmdletBase.cs @@ -20,6 +20,7 @@ using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Azure.Commands.ResourceManager.Common; using Newtonsoft.Json; +using System.Text; namespace Microsoft.Azure.Commands.RecoveryServices { @@ -77,27 +78,30 @@ public void HandleException(Exception ex) string originalMessage = cloudException.Error.OriginalMessage; error = JsonConvert.DeserializeObject(originalMessage); - string exceptionMessage = Properties.Resources.CloudExceptionDetails; + StringBuilder exceptionMessage = new StringBuilder(); + exceptionMessage.Append(Properties.Resources.CloudExceptionDetails); if (error.Error.Details != null) { foreach (ARMExceptionDetails detail in error.Error.Details) { - exceptionMessage = exceptionMessage + string.Concat( - string.IsNullOrEmpty(detail.ErrorCode) ? "" : "\nErrorCode: " + detail.ErrorCode, - string.IsNullOrEmpty(detail.Message) ? "" : "\nMessage: " + detail.Message, - "\n"); + if (!string.IsNullOrEmpty(detail.ErrorCode)) + exceptionMessage.AppendLine("ErrorCode: " + detail.ErrorCode); + if (!string.IsNullOrEmpty(detail.Message)) + exceptionMessage.AppendLine("Message: " + detail.Message); + + exceptionMessage.AppendLine(); } } else { - exceptionMessage = exceptionMessage + string.Concat( - string.IsNullOrEmpty(error.Error.ErrorCode) ? "" : "\nErrorCode: " + error.Error.ErrorCode, - string.IsNullOrEmpty(error.Error.Message) ? "" : "\nMessage: " + error.Error.Message, - "\n"); + if (!string.IsNullOrEmpty(error.Error.ErrorCode)) + exceptionMessage.AppendLine("ErrorCode: " + error.Error.ErrorCode); + if (!string.IsNullOrEmpty(error.Error.Message)) + exceptionMessage.AppendLine("Message: " + error.Error.Message); } - throw new InvalidOperationException(exceptionMessage); + throw new InvalidOperationException(exceptionMessage.ToString()); } else { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs index 7987dcc185d7..f061599f5620 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Common/SiteRecoveryCmdletBase.cs @@ -26,6 +26,7 @@ using Microsoft.WindowsAzure.Commands.Utilities.Common; using Properties = Microsoft.Azure.Commands.SiteRecovery.Properties; using Newtonsoft.Json; +using System.Text; namespace Microsoft.Azure.Commands.SiteRecovery { @@ -83,31 +84,38 @@ public void HandleException(Exception ex) string originalMessage = cloudException.Error.OriginalMessage; error = JsonConvert.DeserializeObject(originalMessage); - string exceptionMessage = Properties.Resources.CloudExceptionDetails; + StringBuilder exceptionMessage = new StringBuilder(); + exceptionMessage.Append(Properties.Resources.CloudExceptionDetails); if (error.Error.Details != null) { foreach (ARMExceptionDetails detail in error.Error.Details) { - exceptionMessage = exceptionMessage + string.Concat( - string.IsNullOrEmpty(detail.ErrorCode) ? "" : "\nErrorCode: " + detail.ErrorCode, - string.IsNullOrEmpty(detail.Message) ? "" : "\nMessage: " + detail.Message, - string.IsNullOrEmpty(detail.PossibleCauses) ? "" : "\nPossible Causes: " + detail.PossibleCauses, - string.IsNullOrEmpty(detail.RecommendedAction) ? "" : "\nRecommended Action: " + detail.RecommendedAction, - string.IsNullOrEmpty(detail.ClientRequestId) ? "" : "\nClientRequestId: " + detail.ClientRequestId, - string.IsNullOrEmpty(detail.ActivityId) ? "" : "\nActivityId: " + detail.ActivityId, - "\n"); + if (!string.IsNullOrEmpty(detail.ErrorCode)) + exceptionMessage.AppendLine("ErrorCode: " + detail.ErrorCode); + if (!string.IsNullOrEmpty(detail.Message)) + exceptionMessage.AppendLine("Message: " + detail.Message); + if (!string.IsNullOrEmpty(detail.PossibleCauses)) + exceptionMessage.AppendLine("Possible Causes: " + detail.PossibleCauses); + if (!string.IsNullOrEmpty(detail.RecommendedAction)) + exceptionMessage.AppendLine("Recommended Action: " + detail.RecommendedAction); + if (!string.IsNullOrEmpty(detail.ClientRequestId)) + exceptionMessage.AppendLine("ClientRequestId: " + detail.ClientRequestId); + if (!string.IsNullOrEmpty(detail.ActivityId)) + exceptionMessage.AppendLine("ActivityId: " + detail.ActivityId); + + exceptionMessage.AppendLine(); } } else { - exceptionMessage = exceptionMessage + string.Concat( - string.IsNullOrEmpty(error.Error.ErrorCode) ? "" : "\nErrorCode: " + error.Error.ErrorCode, - string.IsNullOrEmpty(error.Error.Message) ? "" : "\nMessage: " + error.Error.Message, - "\n"); + if (!string.IsNullOrEmpty(error.Error.ErrorCode)) + exceptionMessage.AppendLine("ErrorCode: " + error.Error.ErrorCode); + if (!string.IsNullOrEmpty(error.Error.Message)) + exceptionMessage.AppendLine("Message: " + error.Error.Message); } - throw new InvalidOperationException(exceptionMessage); + throw new InvalidOperationException(exceptionMessage.ToString()); } else { diff --git a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs index 7d5332882416..c39a2740d0cd 100644 --- a/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs +++ b/src/ResourceManager/SiteRecovery/Commands.SiteRecovery/Models/PSObjects.cs @@ -966,11 +966,13 @@ public ASRJob(Job job) this.ClientRequestId = job.Properties.ActivityId; this.State = job.Properties.State; this.StateDescription = job.Properties.StateDescription; - this.EndTime = job.Properties.EndTime.HasValue ? job.Properties.EndTime.Value.ToLocalTime() : (DateTime?)null; - this.StartTime = job.Properties.StartTime.HasValue ? job.Properties.StartTime.Value.ToLocalTime() : (DateTime?)null; this.Name = job.Name; this.TargetObjectId = job.Properties.TargetObjectId; this.TargetObjectName = job.Properties.TargetObjectName; + if(job.Properties.EndTime.HasValue) + this.EndTime = job.Properties.EndTime.Value.ToLocalTime(); + if(job.Properties.StartTime.HasValue) + this.StartTime = job.Properties.StartTime.Value.ToLocalTime(); if (job.Properties.AllowedActions != null && job.Properties.AllowedActions.Count > 0) { this.AllowedActions = new List();